How to create batch file to shutdown computer?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
Nate Duong
Messages
125
Reaction score
4
Dear Group,

I would like to ask a question regarding to the batch file,

I am trying to create a batch file which could help to to shutdown to computer quickly, but when i run batch file, the command window showed up and keep running too many line but did not shut down the computer.

But when I typed directly on the command line window, it worked.

Please give me an advise, and this is a simple code and picture of the problem.
@Echo off
shutdown /s

Thank you group,

Nate Duong.
 

Attachments

  • IMG_2487.JPG
    IMG_2487.JPG
    41 KB · Views: 537
Physics news on Phys.org
If you name your batch file "shutdown.bat" (or "shutdown.cmd") and invoke it from its own directory (that is, the current working directory where the batch file is placed), then the batch file is not calling the windows shutdown.exe but your own batch file instead. If this is the case, then try rename your batch file to something else, or alternatively, provide a full path to the shutdown.exe.
 
  • Like
Likes   Reactions: mfb
The default wait time before the shutdown starts is 30 seconds. To make it start immediately, use /t 0. To make it force a shutdown without warning the user, use /f. So try "shutdown /s /f /t 0"

You can see all the details by typing shutdown /? in a DOS command window.