Explanation
I want to run a few programs / files on logon, so I'm using Task Scheduler, rather than the Startup folder or scripts, because certain programs require UAC elevation and Task Scheduler's "Run with highest privileges" will suppress prompts, I believe.
Problem
The first action never exits properly, so, as task actions are synchronous, only the first action is ever run.
So, does anyone know how to make tasks asynchronous or have any other suggestions?
Setup


startuplocation under "All programs". Copy the shortcuts to executables to this folder and it will run all programs after you login. Task scheduler is for somethin else. – mnmnc Dec 18 '12 at 11:22CMD /C "start notepad.exe &"to start the programs. This might allow calling other jobs while previous are still running – mnmnc Dec 18 '12 at 15:26Windows cannot find 'C:\Program'. Make sure you typed the name correctly, and then try again.– Ben Hooper May 7 at 14:49