从批处理文件远程关闭

时间:2014-07-15 23:09:21

标签: batch-file networking

我目前正在尝试编写一个简短的批处理文件来关闭连接到网络的PC。我将shutdown命令与-m开关一起使用,如下例所示:

shutdown -r -m \\192.168.0.3 -t 60

语法似乎是正确的,但终端返回以下语句:

  

无法找到网络路径

因此,虽然PC连接到该IP,但终端返回错误。

我该如何解决这个问题?是否需要启用特定的后台服务?

2 个答案:

答案 0 :(得分:0)

在comp name

之后尝试使用u' r -r参数
shutdown –m \\computername –r –f –c “I’m restarting your computer for maintenance.  Please save your work now.” –t 120

使用Windows界面调用此工具,在cmd上键入shutdown -i

答案 1 :(得分:-2)

set ip=
set seconds= 
shutdown -m \\%ip% -r  -f -t %seconds%