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

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -