懒的写...
这是自己平时用的,楼主参考下Dim $Process[15]
$Process[0] = 'ati2evxx.exe'
$Process[1] = 'rundll32.exe'
$Process[2] = 'TXPlatform.exe'
$Process[3] = 'AppleMobileDeviceService.exe'
$Process[4] = 'mDNSResponder.exe'
$Process[5] = 'InjectWinSockServiceV5.exe'
$Process[6] = 'SbieSvc.exe'
$Process[7] = 'ULCDRSvr.exe'
$Process[8] = 'vmware-usbarbitrator.exe'
$Process[9] = 'vmnat.exe'
$Process[10] = 'vmnetdhcp.exe'
$Process[11] = 'vmware-authd.exe'
$Process[12] = 'TencentUpdateSvc.exe'
$Process[14] = 'spoolsv.exe'
For $i = 0 To 14
If ProcessExists($Process[$i]) Then ProcessClose($Process[$i])
Next
Run('taskmgr.exe')
|