使用批处理文件快速关闭远程服务器

时间:2017-02-04 11:57:58

标签: batch-file command remote-access remote-server

我知道如何使用关闭命令(shutdown -r -f -f 0)来关闭计算机,但我正在尝试创建一个批处理文件,以便在紧急情况下远程关闭计算机/服务器。 / p>

感谢。 阿米尔

1 个答案:

答案 0 :(得分:2)

使用“/ m”参数关闭 shutdown.exe / m \\ hostname -s -t 0

或 wmic.exe OS其中Primary = TRUE调用Win32Shutdown 1

来自Sysinternals的

或psshutdown.exe

或psexec.exe \\ hostname -u [user] -p [password] -accepteula shutdown.exe -s -t 0

https://technet.microsoft.com/en-us/sysinternals/pxexec.aspx

https://technet.microsoft.com/en-us/sysinternals/psshutdown.aspx