3-tag:General-250px-related-5385949187566471317
Skip to main content

Shutdown your PC using a batch file

In order to shut the PC using a batch file,  open the notepad and type the following code.



C:\windows\system32\shutdown -s -f -t 00
Save the file with  .bat extension .

Then click on the batch file to shutdown the PC.

It can be seen that beside -t, 00 is given ,it is the timer to give a command to the system as to after how many secs you want your PC to be turned off after executing the batch file.

Comments