![]() |
|
#1
|
|||
|
|||
|
I want to set up a task so that my computer shuts down at 3:00 in the morning if I'm not using it. I've never used task scheduler before so I need someone to walk me though how to create the task. I have no problem getting into task scheduler though.
|
|
#2
|
|||
|
|||
|
Using Task Scheduler to schedule the computer to shut down and restart at a specific time
shutdown.exe -s -t 00 To reboot the system immediately, this command:shutdown.exe -r -t 00 For additional help, type Shutdown /? at the Command Prompt. Scheduling the Shutdown.exe without any parameters will not help. It will just execute with a exit code 0 (success)
|