How to Create a Shutdown Timer in Windows 10
How to Create a Shutdown Timer in Windows 10 GA S REGULAR Menu Lifewire Tech for Humans Newsletter! Search Close GO Software & Apps > Windows 46 46 people found this article helpful
Press Enter. Make sure you've saved or closed any documents or apps as this will shut down your computer immediately.
How to Create a Shutdown Timer in Windows 10
Four ways to automate shutdowns one-time or for regularly scheduled dates
By S.E. Slack S.E. Slack Senior Strategy & Editorial Director, Lifewire.com California Polytechnic State University at San Luis Obispo S.E. Slack has 30+ years' experience writing about technology. She has authored 12 books, thousands of articles, and worked for IBM and Microsoft. lifewire's editorial guidelines Updated on February 18, 2022 Reviewed by Ryan Perian Reviewed by Ryan Perian Western Governors University Ryan Perian is a certified IT specialist who holds numerous IT certifications and has 12+ years' experience working in the IT industry support and management positions. lifewire's editorial guidelines Tweet Share Email Tweet Share Email Windows The Ultimate Laptop Buying GuideWhat to Know
For one-time use: Open Command Prompt, then type shutdown –s –t > # of seconds > Enter.Also, for one-time needs: Use the Run command: shutdown –s –t > # of seconds > OK.You can also use Task Scheduler to create a detailed system and schedule for regularly scheduled shutdown events. This article explains four ways to set a specific, automatic shutdown time for your PC. We also include information on how to stop a scheduled shutdown.How to Schedule a Computer to Shut Down With Command Prompt
Follow these steps to use the command prompt for a one-time shutdown. In the Windows Search Box, type CMD. Select Enter. In the Command Prompt window, type shutdown -s -t and the number of seconds you want. Note the CMD and Run command processes use seconds to measure time, not minutes. For example, if you want to shut down in 10 minutes, use 600 seconds. If you want your computer to shut off in 10 hours, use 36,000. The choice is always yours; remember to add it in seconds instead of minutes. Select Enter. A window will pop up, warning you Windows will shut down in the amount of time you requested. That's it. Your computer will now automatically shut down at the time you specified. You'll receive a warning a few minutes before shutdown to remind you then, too. No longer want your computer to shut down at a specific time? Cancel the request by opening the Command Prompt and typing shutdown -a. Select Enter.How to Set up Automatic Shutdown With the RUN Command
Follow these steps to use the command prompt for a one-time shutdown. In the Windows search box, type RUN. You can also press the Windows button + R at the same time instead. Select Enter. In the Run dialog box, type shutdown -s -t and the number of seconds you need. Select OK. A window will pop up showing you that it received your request, and your computer will log off at the time you requested.Using PowerShell for Immediate Shutdown
If you'd like a quick and immediate shutdown for Windows, use Windows PowerShell, the Start-Sleep, and the Stop-Computer cmdlets. The Start-Sleep cmdlet suspends activities in a script for a specified period of time. This puts applications to sleep or closes them. The Stop-Computer cmdlet will shut down the specified computer. In Windows Search, enter powershell and select either Windows PowerShell or Windows PowerShell ISE. At the prompt, enter Start-Sleep -s ##; Stop-Computer -ComputerName localhost. Where -s represents Seconds and ## is the number of seconds. In our example, we use 1800. For the local computer, use ComputerName localhost or specify the computer name you wish to shut down.Press Enter. Make sure you've saved or closed any documents or apps as this will shut down your computer immediately.