Open a Program when i open another Program
Go to solution
Solved by tikker,
Probably a batch file is easiest. Open notepad add each program as
start /B "" "E:\full\path\to\program1.exe" start /B "" "C:\full\path\to\program2.exe"
and save with a .bat extension. The first string is the title for the command prompt (we don't care), and /B opens it in the background (no command prompt will show).
[Edit] Assuming Windows of course.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now