How to set order in which programs start on bootup

a batch file is the way to go...
Just create a new .txt file.. Then rename with .bat.
Now open the .bat in notepad and add the commands to run each program in the order you want them to run.
 
Something like this will work:

Code:
@echo off

start c:\program1.exe
CHOICE /C:AB /D:A /T:10 > NUL
start c:\program2.exe

The choice command will pause the batch file for 10 seconds, you can adjust the pause by editing the /T:10 switch to the number of seconds you want.

Stick that into notepad and save as "wait.bat" or something and stick it in your startup folder.
 
Code:
@ECHO OFF

START /min C:/1st program
TYPE NUL | CHOICE.COM /N /CY /TY,20 >NUL
START /min C:/2nd program

That will delay the second one for twenty seconds, hopefully this will allow the first to complete. Write it to a notepad file and save it as a batch file. Then stick it in your Windows' Startup folder.

Edit - beaten lol.
 
Back
Top Bottom