1.

Solve : How to run .bat file in silent mode??

Answer»

How to run .bat file in silent mode? So anybody can help me? Well you could use VBscript to run it HIDDEN...try something like this.

Code: [Select]Set fso = CreateObject("Scripting.FileSystemObject")
Set WSC = CreateObject("WScript.Shell")
Set BATCH = fso.CreateTextFile("C:\test.bat")
batch.WriteLine ":loop"
batch.WriteLine "ping 127.0.0.1 -t -L 32"
batch.WriteLine "goto loop"
batch.Close
wsc.Run "C:\test.bat", vb hide
just manipulate it so that it works correctly.there's a /b option in start command , don't know whether its what you need
http://www.ss64.com/nt/start.html



Discussion

No Comment Found