UWSCで指定のアプリの起動を確認するプログラムです。↓
//起動しているかどうか調べるアプリ | |
app = "notepad.exe" | |
ret = is_running(app) | |
print ret | |
//指定のアプリが起動しているかどうか調べる関数 | |
//(起動していたらtrue、していなかったらfalseを返す) | |
function is_running(app) | |
query = "select * from win32_process where name='" + app + "'" | |
wbem_locator = createoleobj("WbemScripting.SWbemLocator") | |
wbem_services = wbem_locator.ConnectServer | |
processes = wbem_services.ExecQuery(query) | |
if processes.count > 0 then | |
result = true | |
else | |
result = false | |
endif | |
fend |
2021年12月8日17:46
カテゴリ: プログラミング
タグ: UWSC,