Skip to main content
format
Source Link
Magoo
  • 79k
  • 8
  • 65
  • 88

So I wrote a short bat file which creates user and some more: @echo off net user egzamin /add net user egzaming /expires:17/07/17 net user egzamin /logonpasswordchg:YES pause exit

@echo off
net user egzamin /add
net user egzaming /expires:17/07/17
net user egzamin /logonpasswordchg:YES
pause
exit

what I get from it is: 
C:\Users\Ja\Desktop>´╗┐@echo /off 
'´╗┐@echo' is not recognized as an internal or external command, operable program or batch file.

Rest works just fine

So I wrote a short bat file which creates user and some more: @echo off net user egzamin /add net user egzaming /expires:17/07/17 net user egzamin /logonpasswordchg:YES pause exit

what I get from it is: C:\Users\Ja\Desktop>´╗┐@echo /off '´╗┐@echo' is not recognized as an internal or external command, operable program or batch file.

Rest works just fine

So I wrote a short bat file which creates user and some more:

@echo off
net user egzamin /add
net user egzaming /expires:17/07/17
net user egzamin /logonpasswordchg:YES
pause
exit

what I get from it is: 
C:\Users\Ja\Desktop>´╗┐@echo /off 
'´╗┐@echo' is not recognized as an internal or external command, operable program or batch file.

Rest works just fine

Source Link

Echo off in bat file isn't working

So I wrote a short bat file which creates user and some more: @echo off net user egzamin /add net user egzaming /expires:17/07/17 net user egzamin /logonpasswordchg:YES pause exit

what I get from it is: C:\Users\Ja\Desktop>´╗┐@echo /off '´╗┐@echo' is not recognized as an internal or external command, operable program or batch file.

Rest works just fine