AU3如何排除中止进程
我想做一个AU3,排除中止一些进程。如我只想保留
svchost.exe
lsass.exe
services.exe
winlogon.exe
csrss.exe等
其它的全部终止
要怎么做?
[ 本帖最后由 douyuan 于 2008-10-15 07:47 编辑 ]
回复 1# douyuan 的帖子
难道没有人能回答这个问题?还是AU3做不到? Dim $Plist=["svchost.exe","lsass.exe","services.exe","winlogon.exe","csrss.exe"]$list = ProcessList()
for $i = 1 to $list
For $x=0 To UBound($Plist)-1
If $list[$i]=$Plist[$x] Then
ContinueLoop
Else
ProcessClose($list[$i])
EndIf
Next
next :face (33):
页:
[1]