douyuan 发表于 2008-9-17 09:51:35

AU3如何排除中止进程

我想做一个AU3,排除中止一些进程。
如我只想保留
svchost.exe
lsass.exe
services.exe
winlogon.exe
csrss.exe等
其它的全部终止
要怎么做?

[ 本帖最后由 douyuan 于 2008-10-15 07:47 编辑 ]

douyuan 发表于 2008-10-14 23:44:22

回复 1# douyuan 的帖子

难道没有人能回答这个问题?还是AU3做不到?

bing614 发表于 2008-10-15 03:01:23

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

dajun 发表于 2010-4-26 18:33:43

:face (33):
页: [1]
查看完整版本: AU3如何排除中止进程