Batch File Console -
how can hide console of running batch file batch running cmd or start>run
you can try couple of things:
schedule user other you.
or
cmd /c start /min your.cmd
or
this wsh/vbscript run batch file in hidden window:
'mycmd.vbs set wshshell = wscript.createobject("wscript.shell") cmd = "c:\bin\scripts\mycmd.cmd" return = wshshell.run(cmd, 0, true) set wshshell = nothing
Comments
Post a Comment