WIN: reboot windows 10 desktop remotely cmd window
Microsoft Windows [Version 10.0.19045.5487]
(c) Microsoft Corporation. All rights reserved.
H:\>shutdown /r /m \\172.27.240.14 /t 0
H:\>shutdown /r /m \\1099isp201118d /t 0
1099isp201118d: The entered computer name is not valid or remote shutdown is not supported on the target computer. Check the name and then try again or contact your system administrator.(53)
/r: Specifies that the computer should be restarted.
/m \\computername: Specifies the remote computer to be restarted, replacing computername with the actual name of the remote machine.
/t 0: Sets the timeout to zero, meaning the restart will occur immediately.
If you need to use an IP address instead of a computer name, replace \\computername with the IP address (e.g., \\192.168.1.100).
Comments
Post a Comment