Windows – don’t show batch file command when execute it

batch-filewindows

when i execute batch file on cmd screen the command in the batch appear on the screen example :-

batch file :-
@echo off.
command1
command2

when i execute it on cmd the following appear on screen :-
c:\user > command1
c:\user >command2

i dont to appear anything when i execute batch file

Best Answer

If I understand your question correctly, I think you want to separate commands on individual lines...

@echo off
command1
command2

Is this what you are looking for?