Shutdown Timer to Automatically shut down Computer at certain time

Shutdown Timer

Tutorial shows you, how to create Daily Shutdown Timer to Automatically Shut down computer at certain time.






Subscribe To My Channel and Get More Great Tips:
https://www.youtube.com/subscription_center?add_user=krestsss

Share this Video:
https://youtu.be/3HXSKhcJAeY

Steps to get your computer to shut down at a time specified by you:

1. Creating a BATCH File
2. Auto Run BATCH File at certain time, using Task Scheduler

Create a BATCH File:
Open note pad, and type following commands:

|
@echo off
shutdown.exe /s /f /t “Seconds” /c “comment”
|

You can easily find all command meaning.
Open Command Prompt and type shutdown slash, and Question Mark, Hit Enter.

|
shutdown /?
|

/s: means, Shutdown the computer.
/f: Force running applications to close without forewarning users.
/t: xxx Set the time-out period before shutdown to xxx seconds.
/c: "comment" Comment on the reason for the restart or shutdown.

Name and Save file as a Batch format.

Make another batch file, to cancel shutdown:

|
@echo off
shutdown /a
|

Name and Save file as a Batch format.

Auto Run BATCH File at certain time, using Task Scheduler:

Go to Control Panel, Administrative Tools, Task Scheduler.
Create a new task.
Name it, and mark check box, “Run with highest privileges”.
Go to "Actions" tab.
Click on "New" button and browse your batch file.
Go to “Triggers” and set time and day, when you want to run your batch file.

Related Videos:

How to create and Pin Shutdown Button on taskbar & on start screen-Windows 8
https://www.youtube.com/edit?o=U&video_id=EqjVE4A-g6g

Comments