You do not need a third party software to automatically shutdown your pc after specific time, because you can schedule your system shutdown using the command prompt. The SHUTDOWN command does everthing. The command can be used to shutdown, restart, logoff and hibernate your local computer or a remote PC connected to your network. HereÕs a quick guide on How to automatically shutdown your PC after specific time using CMD.
How to schedule system shutdown
1. Open the ÒcmdÓ window, to open the command prompt, press Win key + R, type cmd and hitEnter 2. Now type the following command, the below command shuts down the computer after1800 seconds (30 minutes)
Shutdown /s /t 1800 Ð This command will shut down you computer in 30 minutesShutdown /s /f /t 1800 - This command will force shut down your computer in 30 minutes, which means all running applications will be closed without getting stuck on ÒDo you want to Force ShutdownÓ notification
Shutdown
shutdown is the common command to perform Shutdown, restart, logoff or hibernate operation
/s
/s Ð means, shutdown, other commands are listed below /r Ð restart /p Ð shutdown without a warning /h Ð hibernate /l Ð logoff /a Ð abort a scheduled shutdown
/t
/t command is used to set the timer.
Aborting a scheduled shutdown
If you want to cancel a scheduled shutdown you can type the following command in the cmd window shutdown /a