|
Answer» Hello all,
Is it possible to run a batch file and not have the command window appear, and without using the Windows scheduler?
WinXP
THANKS! BryanFrom the Start==>Run box you can use:
start /min path\batchfile.bat
Batch files are INTERPRETED by the CMD processor so you at least need an instance running to execute your batch file.
8-)Thanks for the tip. BryanCorrection:
The START command cannot be run from the Run box. You would have to SHELL out to the processor and start the batch file. Also necessary to include the exit instruction in your batch file.
Ex. In the run box:
cmd /c start /min path\batchfile.bat
Sorry if you were mislead.
|