需求是虚拟黑裙关机后windows物理机跟随关机,原先思路是黑裙发送指令给windows关机,未果;换了个思路,如windows ping不通群晖则联动关机,试验成功,分享上来给有相同需求的朋友: 计划任务设置如下(按需修改): bat脚本代码(新建txt文档并重命名为.bat文件;代码源于http://www.bathome.net/thread-61042-1-1.html修改,按需修改): 代码: @echo off & title ping 群晖,不通则关机 mode con cols=60 lines=10 :loop ::以下IP为群晖内网IP,据实修改 ping -n 3 192.168.199.128|findstr /i /c:"来自 192.168.199.128 的回复" ::ping不通延迟120秒关机 if errorlevel 1 ( shutdown -s -t 120 exit ) ::ping通关闭脚本 if errorlevel 0 ( exit ) goto :loop 通过windows计划任务与bat脚本配合实现联动关机 退而求其次的方案,弊端很明显,如果存在网络问题,会造成误关机。 顺带再求一下群晖发送指令给windows关机的方法,网上找到linux远程关机windows的方法,但是没能成功