Category filter
Script to shut down Windows 10 devices
The admin might need to shut down devices remotely. Hexnode allows admins to shut down Windows 10 devices by deploying scripts. The admin can delay the action according to their wish. This document contains the code snippets for shutting down the device.
Jump To
Batch Script
1 |
shutdown.exe /s /t 00 |
Powershell Script
1 |
Stop-Computer -ComputerName "computer_name" -force |
Need more help?