Soldato
- Joined
- 13 Oct 2006
- Posts
- 8,152
- Location
- Surrey
I have 2 programs that I want to run on startup, but one has to run before the other else it errors. Is there a way I can do this?
Cheers
Cheers
Hmm, you may be able to write a batch file that does this. Then put a shortcut to it in the Startup folder.
@echo off
start c:\program1.exe
CHOICE /C:AB /D:A /T:10 > NUL
start c:\program2.exe
@ECHO OFF
START /min C:/1st program
TYPE NUL | CHOICE.COM /N /CY /TY,20 >NUL
START /min C:/2nd program