Is there a way to make custom startup programs to run after "some time" after boot up.. How to sort(order of execution) programs "specific amount of time(after another program)" ? Maybe a batch file, but which command ? For example: "run this,(after 3min) run that" Via batch or.. ?
feedback
|
|
With Soluto you can delay some startup programs. And get rid of unnecessary ones... | |||
|
feedback
|
|
You can do it all in one batch file for your custom programs. Have it start up with task scheduler and call this batch file when you want to pause: @ping 127.0.0.1 -n 2 -w 1000 > nul @ping 127.0.0.1 -n %1% -w 1000> nul e.g.:
wait.bat is the batch file containing the ping code above. When invoked in the script as shown above, the argument is the wait time in seconds that your script will pause for. Ensure it is accessible via the same directory or PATH environment variable before trying to call it. | |||||||||
feedback
|