Thinkai's Blog

Autohotkey|Python|php|aardio|VOIP|IT 爱好者

批量结束包含关键词程序名的进程 Autohotkey 4713

作者为 发表

Autohotkey

RunWait, %ComSpec% /c tasklist >a.txt, , Hide
InputBox, key, 程序名关键词批量结束, 请输入程序名关键词!,
StringLen, len, key
if len < 2
	{
	MsgBox, 16, 警告, 关键词小于两位,可能会导致系统崩溃,请重试!
	Reload
	}
Loop
{
FileReadLine, line, a.txt, %A_Index%
if errorlevel
	Break
IfInString, line, .exe
	{
	StringSplit, var, line, .,
	IfInString, var1, %key%
		{
		runwait, %ComSpec% /c taskkill /f /IM %var1%.exe, , Hide
		}
	}
}



来了就留个评论吧! 1个评论




友情链接:Autohotkey中文帮助Autohotkey官网Autohotkey中文网联系作者免GooglePlay APK下载

 主题设计 • skyfrit.com  Thinkai's Blog | 保留所有权利

60 queries in 1.737 seconds |