1

Possible Duplicate:
Run a completly hidden batch file

I have a bat file that open a window and show a lot of information, which bother me a lot. How could I run the bat file in background?

Hennes
  • 65,804
  • 7
  • 115
  • 169
Jichao
  • 7,940

2 Answers2

3

There is a program called HStart (HiddenStart) which does it easily.

hstart /noconsole c:\example.bat

You can find hstart at ntwind.com Hidden Start Utility

barlop
  • 25,198
2

Two ways to solve, depending on what you want, check the answers here:

Per @Twisty's request, here's a copy of the solution from this answer:

Set WshShell = CreateObject("WScript.Shell" ) 
WshShell.Run chr(34) & "C:\Batch Files\ mycommands.bat" & Chr(34), 0 
Set WshShell = Nothing 

Put this in a file with .vbs extension, edit the location to your bat file and run .vbs instead.

icyrock.com
  • 5,432