I've created 2 tasks in Task Scheduler on my Vista PC start uTorrent at 2am then close uTorrent (and shutdown PC) at 7am. However i'd like to only like this task to run if I've clicked a shortcut - ideally show something in the tray as well if possible. But not sure how?
|
feedback
|
migrated from serverfault.com Sep 10 '09 at 11:59
This question came from our site for system administrators and desktop support professionals.
|
uTorrent has scheduling built in. You could therefore do the following:
I should add that uTorrent can cope with the PC shutting down while it's still running, so you could get away without a delay between the end of uTorrent's active time and the machine shutting down. | ||||
|
feedback
|
|
Set up a batch file using the AT command, like so: AT 2:00 "[path]/utorrent.exe" AT 7:00 "shutdown /s /f" | |||
|
feedback
|
|
You can control your scheduled tasks using
And then you may create a shortcut to another .bat file enabling tasks once clicked, like:
PS. And it should wake up your computer from sleep if you specified to do so in scheduled tasks, but it could be put to sleep again after some user-inactivity timeout. | |||
|
feedback
|