在windows中,通过判断某程序的运行,再执行其它操作。
@echo off
:START
timeout /t 10 (设置查询时间)
tasklist |find /i “QQMusic.exe” 查找程序
if %errorlevel%==0 (goto kill) else (goto end) 判断语句
:kill
taskkill /f /im QQMusic.exe 执行语句
GOTO START
:end
GOTO START
以上保存为*.bat运行即可。
如果需要隐藏,可以用以下
set ws=WScript.CreateObject(“WScript.Shell”)
ws.Run “C:\*.bat”,0
隐藏运行上述保存的bat文件即可。