Non credo si possa nascondere la finestra DOS con i suoi stessi comandi ma ho trovato che è possibile far lanciare il file .bat da un .vbs...


Another way would be to launch it with a vbs file. Just add this to a text file and give it a .vbs extension. Then double click it.

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.run "%comspec% /c C:\MyFile.bat",0
Set WshShell = Nothing


da: http://www.experts-exchange.com/Prog..._21427313.html