
Quote: Originally Posted by
legend86
Is there any way to schedule a task to load a program once a particular program is loaded? And if possible, have that program close once the other program is closed?
Like, I want program B to run only if I open program A. Then when I close program A, program B closes also.
I can have a program start once another program ends, by using a batch file.
For instance, let's say I create the file test.bat
the file contains two lines:
notepad.exe
calc.exe
when I start the bat file, notepad runs. when I close the notepad, the calculator program runs.
perhaps there's additional functionality you could do in the batch file, or maybe it could be done in a scheduler, but this is what i could come up with.