当 UPS 启动时关闭 VMware 客户应用程序

当 UPS 启动时关闭 VMware 客户应用程序

我的情况是,我正在运行 VMware 工作站来运行 LAMP 服务器以进行一些轻量级数据收集。

我的主机操作系统是 Windows XP。我有一台 APC UPS,设置为在断电时通过 PowerChute 关闭 PC。

我想知道是否有某种方法可以正常关闭 LAMP 服务器,因为我很确定如果 VMware 设备正在运行,VMware 将阻止 PowerChute 关闭 PC。

答案1

这应该可以解决问题:

#Persistent
SetTitleMatchMode, Slow
WinWait,,virtual machine is in use,,,
{
    WinMaximize
    Send { Enter }
    Send { Alt } 
    Send { Right 3 }
    Send { Down }
    Send { Right }
    Send { Down 5 }
    Send { Enter }
    Sleep 5000
    Send { Enter }
}

您需要安装自动热键

相关内容