net use
with
shutdown
, this machine restarts the remote server There is a problem with the server today, can ping, but is Telnet server, the server can not respond. The FTP service can be used in native tests, so it is possible to restart the server via FTP. But dealing things a half day, also did not fix. Alas, this idea can only be abandoned. Another way to get him, remember in an article read about the remote restart the server through the Shutdown command method. Thought carefully, and found the relevant information on the Internet. Use the following two commands to resolve this issue. net use \ \ target ip\ipc$ "password"/user: "username" Net use\\192.168.0.10123456/user:administrator shutdown-r-M \\192.168.0.10 –t 0 In order to execute the first command, we grant the administrator user of the server the right to restart remotely. then we execute the second command, we can restart the remote server in this machine. related to the following: PS: First, we use the above two commands, please pay attention to the middle of the space, otherwise during the use of the system will prompt the relevant error messagesecond, in fact, through the above command we can also remotely shutdown, as long as we have a second command to modify a little bit. The shutdown command is as follows:shutdown-s-M \\192.168.0.10–t 0third, when using the first article in this command, you must know the Administrator account and password on the server