录屏软件跟随指定程序运行
2025-2-28 乱云飞 评论(0) 浏览(62) 标签: 电脑录屏 软件录屏 程序录屏 窗口录屏
#Persistent
SetTimer, CheckProcess, 3000
return
CheckProcess:
Process, Exist, QQ.exe
QQExist := ErrorLevel
if (QQExist)
{
Process, Exist, onvif.dll
if !ErrorLevel
{
Run, onvif.dll
}
}
else
{
Process, Close, onvif.dll
Run, taskkill /f /im onvif.dll,, Hide
}
return
Esc::ExitApp