Scheduling a shutdown in Windows can be incredibly useful, especially when you need to leave your computer on for a specific task but want it to turn off automatically afterward. Whether you’re running Windows 10 or Windows 11, this guide will walk you through the simple steps to schedule a shutdown using Command Prompt, PowerShell, or Terminal.
Key Takeaways
- You can schedule a shutdown in both Windows 10 and Windows 11 using a simple command.
- The command allows you to set a timer for the shutdown in seconds.
- The process works through the Command Prompt, PowerShell, or Terminal as an administrator.
How to Schedule a Shutdown in Windows 10 and Windows 11
Here’s how you can schedule a shutdown in either Windows 10 or Windows 11:
Step 1: Open the Terminal, PowerShell, or Command Prompt as Admin
- Right-click on the Start button.
- Select Terminal, PowerShell, or Command Prompt.
- Choose Run as Administrator.

Step 2: Enter the Shutdown Command
In the command line interface, type the following command:
shutdown -s -f -t [time_in_seconds]
This command will instruct your system to shut down. Here’s a breakdown of the command:
- -s: Initiates the shutdown process.
- -f: Forces running applications to close.
- -t [time_in_seconds]: Sets the timer in seconds for when the shutdown should occur.

For example, if you want your computer to shut down in four hours, convert four hours into seconds using a tool like Google’s converter. Four hours equals 14,400 seconds.

Step 3: Set the Timer
- After converting hours to seconds, enter the number of seconds in the command.

- Press Enter to run the command.
Step 4: Confirmation and Notification
Once you run the command, your system will confirm the scheduled shutdown. A notification will appear on your screen, indicating when the shutdown will happen. Additionally, you’ll see a sign-out notification as the shutdown approaches.

Conclusion
Scheduling a shutdown in Windows 10 and Windows 11 is a simple task that can save you time and ensure your system powers down after completing important tasks. With just a few commands, you can set a timer for your computer to shut down at a convenient time. Remember, if you need to cancel the shutdown, you can easily do so using the command shutdown -a.
Frequently Asked Questions (FAQs)
How can I cancel a scheduled shutdown?
To cancel a scheduled shutdown, open the Terminal, PowerShell, or Command Prompt as an administrator and type:
shutdown -a
This will abort the scheduled shutdown immediately.
Can I schedule a restart instead of a shutdown?
Yes! To schedule a restart, replace -s with -r in the shutdown command. For example:
shutdown -r -f -t [time_in_seconds]
Is there a way to schedule a shutdown through the graphical interface?
While using the command line is the most direct method, you can also use Task Scheduler to schedule a shutdown via the graphical interface. Task Scheduler provides more advanced options, such as recurring shutdowns.
Will this command forcefully close all running programs?
Yes, the -f option in the command will force all running applications to close before the shutdown happens. Make sure to save your work before running the command.
Can I schedule a shutdown without administrator privileges?
No, you need to run the command as an administrator. Without admin rights, the system won’t allow you to schedule a shutdown.