Batch command to shutdown

1 answer

Answer

1268390

2026-04-17 09:30

+ Follow

To create a batch command that shuts down a Windows computer, you can use the following command in a text file with a .bat extension:

<code class="language-batch">shutdown /s /t 0
</code>

This command initiates a shutdown (/s) with a timeout of 0 seconds (/t 0), meaning the shutdown will occur immediately. You can save this command in a .bat file and run it to shut down your computer.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.