下面是在本人本机上用的,请楼主自行修改吧:- @echo off&color 1f&mode con cols=50 lines=5
- title 非法进程结束器(对杀软无效)
- echo.&echo.
- set "back=smss csrss winlogon services lsass svchost spoolsv alg nvsvc32 wdfmgr explorer ctfmon wmiprvse qq cmd iexplore lenovo_ce200_detect syntpenh"
- taskkill /f /im explorer.exe>nul 2>nul
- for %%a in (%back%) do set "_%%a.exe=a"
- for /f %%a in ('tasklist^|findstr /i ".exe"') do if not defined _%%a taskkill /f /im %%a>nul 2>nul
- for %%a in (%back%) do set "_%%a.exe="
- start explorer.exe>nul 2>nul
- echo 所有非法进程已经结束。
- ping /n 3 127.1>nul
复制代码
|