Configuring STARTALL.cmd command to auto start all processess

From NEOSYS Technical Support Wiki
Revision as of 08:55, 2 April 2007 by Ashwin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Setting up the file

Create a .cmd file with the following command lines:

start cmd /c "D:\hosts\markone\Start MARKONE.cmd"
c:\cygwin\bin\sleep 10
start cmd /c "D:\hosts\orange\Start ORANGERIE.cmd"
c:\cygwin\bin\sleep 10

The c:\cygwin\bin\sleep 10 is to give a 10 second gap between each process startup.

Likewise you can add additional lines to start up additional processes.

Incase you need to disable a process startup temporarily, instead of deleting the line, you may add the word REM (meaning REMARK) before the start of the line and the line will be ignored till such time the remark is there.