If you want to customize your automated setups further, let me know:
shutdown -a
In the black window, type the following exactly as shown: shutdown -s -t 3600
Press . A Windows notification will appear in the system tray confirming that your system will shut down in 60 minutes. Exclusive Parameters for Advanced Control
When exploring documentation online, you will frequently see the shutdown command written with a forward slash ( / ) or a hyphen ( - ). Both are accepted and function identically. The command shutdown /s /t 3600 is perfectly interchangeable with shutdown -s -t 3600 . shutdown s t 3600 exclusive
: The /t switch dictates the time-out period before the action is enforced. The numerical value that follows it is explicitly measured in seconds . Because there are 60 seconds in a minute and 60 minutes in an hour (
The command shutdown /s /t 3600 is a classic, highly effective utility for Windows users who need precise control over their system's power state. While technically a "one-hour timer," its utility in a professional or gaming setup is often underestimated.
If you change your mind, you can stop the scheduled shutdown. Open the Command Prompt or Run dialog ( Win+R ) and type: shutdown -a The -a stands for . A notification will appear confirming that the scheduled shutdown has been cancelled. What if I want to force programs to close?
PowerShell treats parameters similarly, but be aware of argument passing: If you want to customize your automated setups
Large video games or software updates can take hours to download. Setting a 3600-second timer ensures your computer stops pulling power from the wall once the download is safely finished.
To truly master the exclusive shutdown timer, combine it with other switches:
). It’s minimalist, sleek, and feels like you’re entering a secret code at a speakeasy. Type in shutdown -s -t 3600
| Flag | Effect | |------|--------| | | Force-running applications to close without warning users. Only add this if you are certain no unsaved work exists. | | /hybrid | Use with /s to prepare the system for a fast startup on next boot (Windows 8+). | | /d p:1:1 | Document the reason for shutdown. Here, p stands for planned, 1:1 is “hardware maintenance”. | | /a | Aborts a pending shutdown. Critical for users who started the timer by mistake. Run shutdown /a in a new CMD window. | | /o | Shuts down and goes to Advanced Boot Options menu (Windows 8/10/11). Useful for recovery. | Both are accepted and function identically
: This switch stands for Shutdown . It instructs the PC to completely power down, closing all applications and turning off the motherboard. (Alternatively, using -r would instruct the machine to restart).
: You don't need to install external software that eats up RAM or bundles hidden adware.
: The command registers directly with the Windows kernel event logs, meaning it uses virtually zero background CPU power while counting down.
Whether you are managing a fleet of office computers or just trying to save electricity on your home gaming rig after a late-night download, mastering shutdown /s /t 3600 gives you total, frictionless control over your PC’s power schedule.