在linux虚拟机里跑任务,可以在sh脚本里把命令一个个按顺序先写好后,把关机命令power off放在最后。这样可以当任务结束后虚拟机自动关机。但这样无法设置虚拟机外部的windows主机关机。
这里写了一个bat脚本,可以对运行的虚拟机程序进行定时监测,如果虚拟机程序结束了,就进行关机命令。
脚本autoshutdown.bat内容如下:
bash
@echo off
set _task = vmware-vmx.exe
:checkService
choice /t 30 /d y /n >nul
tasklist|find /i "vmware-vmx.exe"
if %errorlevel%==0 (
echo. program % _task% is running.
call:checkMessage
) else (
echo. program % _task% is over.
call:poweroffService
)
:checkMessage
echo %time% 程序运行正常,20秒后继续检查.. >> C:\Users\ff\Desktop\autoshutdownlog.txt
call:checkService
:poweroffService
echo %time%
echo ********PC will be power off after 1 min********
echo The last time of PC shutdown is %time% >> C:\Users\ff\Desktop\autoshutdownlog.txt
shutdown /s /f /t 60
cls
exit
这里用set 命令将监测的程序vmware-vmx.exe 定义为变量**_task**。
建立了3个自定义函数**:checkService** ,:checkMessage ,:poweroffService。
在**:checkService** 函数里,用choice 命令设置了等待时间30秒,30秒后运行后面的tasklist 命令在运行的任务中查找任务vmware-vmx.exe 。如果任务存在,变量errorlevel 返回0,如果不存在errorlevel变量返回1。基于此建立if和else语句。
用**:checkMessage** 将内容记录到日志文件中,用call 命令返回到函数**:checkService**里继续监测。
最后如果任务vmware-vmx.exe 结束,用call 命令调用**:poweroffService**函数运行shutdown命令进行主机关机。
参考: