How do I change the order of programs at the Startup?

MrMilney

Senior member
Aug 12, 2000
678
0
0
If I uderstand your question right you want the programs that load when you start Windows to load in a specific order, one after the other. If so, the only way I know how to do it would be to write a batch file to run them, then put a shortcut to that batch file in the StartUp folder of the Start menu. To launch a program from the batch file use the start command with the /w switch. The /w switch causes the program being run to completely load and return before the next line of the batch file is run. For example:

@echo off
start /w c:\first\first.exe
start /w c:\second\second.exe