How to set Automatic Shutdown Time to your Computer

You are browsing in your computer and slept leaving your pc (or) you put a download and it is going to end after 30 minutes but you cannot wait until it gets downloaded and your parents hate putting lights ON during night.

What you gonna do ???

So in this situation Automatic Shutdown Timer helps you. So to shutdown automatically at a particular time follow these steps.
  
  ª  Go to NOTEPAD in your computer.

  ª  Now copy the following code in Notepad.

  ª  Code:
        @echo off
        :W
        if %time%==11:01:00.00 goto :X
        goto :W
        :X
        shutdown.exe /s /f /t 60 /c "Go to bed!!!!!!"

   Set your preferred time of shutdown in the third line of above code.



  ª  Now save it as scheduletimer.bat file extension. And do not forget to select all files               instead of text file.
  
  ª  And now double click it. A Blank Cmd prompt pops up.Do not close it,but just minimize it.
  

  ª  And that’s it your pc will shutdown as per schedule,you can sleep without any other worries. 

          Note:
  •  And in case you are testing it and the shutdown time is ON and you do not want to  shutdown your PC right now so to stop it... 

           Go to RUN [Windows+R] and type shutdown.exe /a and Enter.

           Now a pop up shows “Logoff is Cancelled”.

Hope this works for you !!