How do I schedule a shutdown in Windows 10?

I’ve been trying to find a way to make my computer shut down automatically at a specific time every day. It’s becoming quite a task to remember to do it manually each night before I go to bed. I’m using Windows 10, and I’ve come across a few suggestions online, but I’m not sure where to start. Can anyone help explain how to schedule a shutdown in Windows 10? I’m looking for a method that’s easy to set up and reliable, so I don’t have to worry about my computer staying on all night. Any step-by-step guidance or tips on how to ensure it works correctly would be really appreciated.
5 Answers

To schedule a shutdown in Windows 10, you can use the Task Scheduler feature built into the operating system. Here’s a brief guide:
- Open Task Scheduler by typing ‘Task Scheduler’ in the search bar and selecting it from the results.
- In the right-hand Actions panel, click ‘Create Basic Task.’
- Name your task and provide a brief description if you want, then click ‘Next.’
- Choose how often you want the task to recur (daily, weekly, etc.), then click ‘Next.’
- Set the start date and time for the task, then click ‘Next.’
- Choose ‘Start a program’ under the action options and click ‘Next.’
- In the ‘Program/script’ box, type
shutdown.exe
. - In the ‘Add arguments (optional)’ box, type
/s
to shut down the computer or use/s /t [seconds]
to provide a countdown. - Click ‘Next,’ review your task settings, and click ‘Finish’ to schedule the shutdown.

Another method involves using the Command Prompt with a straightforward approach. Here’s how:
1. Press Win + R
to open the Run dialog, then type cmd
and press Enter.
2. In the Command Prompt window, type shutdown -s -t [seconds]
where [seconds] is the delay before shutdown. For example, for a 1-hour delay, type shutdown -s -t 3600
.
3. Press Enter to execute the command.
4. To cancel the scheduled shutdown, open Command Prompt again and type shutdown -a
, then press Enter.
This method doesn’t involve recurring schedules but is effective for one-time setups.

If you’re comfortable creating desktop shortcuts, you can make a shutdown shortcut with a timer:
- Right-click on your desktop, then select
New
->Shortcut
. - In the shortcut location field, type
shutdown.exe -s -t [seconds]
and clickNext.
For instance,shutdown.exe -s -t 1800
sets a 30-minute timer. - Name your shortcut, e.g., ‘Shutdown Timer,’ and click
Finish.
- Double-click this shortcut whenever you need to start the timer.
This method provides quick access without delving into menus or additional software installations.

For users who prefer a graphical interface without commands, the use of third-party software might be appealing. Applications like ‘Wise Auto Shutdown’ provide a user-friendly way to set up scheduled shutdowns:
- Download and install Wise Auto Shutdown from their official website.
- Open the app and select ‘Shut down’ from the list of options.
- Choose the timing for the shutdown, specifying the exact time or the delay in minutes/hours.
- Click the ‘Start Task’ button to activate your scheduled shutdown.
These tools often come with additional options like restarting or logging off, giving more flexibility.

Lastly, for those who want to use Windows PowerShell, it’s another powerful tool for managing system tasks:
1. Open PowerShell by searching for it in the Start menu.
2. Type the command Start-Sleep -Seconds [seconds]; Stop-Computer
where [seconds] specifies the delay.
3. Press Enter to run the command.
While this approach gives more control, remember to open PowerShell with administrative privileges if requested.