run in hidden mode when calling a .bat file?
get the cmd prompt to run in hidden mode when calling a .bat file? help
me please...
get the cmd prompt to run in hidden mode when calling a .bat file? help
me please...
if I understand what you are asking, you wish to hide the command window. If so, try this:
Dim theProcessStartInfo as new ProcessStartInfo("filename.bat")
theProcessStartInfo.CreateNoWindow = true
theProcessStartInfo.WindowStyle = ProcessWindowStyle.Hidden
Process.Start(theProcessStartInfo)
does this work for you? is this what you are after?