Configuring STARTALL.cmd command to auto start all processess: Difference between revisions

From NEOSYS Technical Support Wiki
Jump to navigationJump to search
m (2 revisions)
(No difference)

Revision as of 18:49, 1 August 2008

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 3
start cmd /c "D:\hosts\orange\Start ORANGERIE.cmd"
c:\cygwin\bin\sleep 3

The c:\cygwin\bin\sleep 3 is to give a 3 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.