這篇文章主要介紹了自制控制進(jìn)程和控制開機(jī)啟動項批處理,需要的朋友可以參考下
自動結(jié)束強(qiáng)制智能結(jié)束.vbs
vbs主要起到運行bat的目地,傳參
代碼如下:
set wshshell=createobject("wscript.shell")
wshshell.run "針對性進(jìn)程管理.bat"
wscript.sleep 2000
for x=1 to 30
wscript.sleep 1000
wshshell.sendkeys "{enter 3}"
next
針對性進(jìn)程管理.bat
代碼如下:
@echo off&setlocal enabledelayedexpansion
ping -n 3 127.0>nul
if exist tem.txt del /f /q tem.txt
echo.正在刷選進(jìn)程.............
echo>>tem.txt explorer.exe
echo>>tem.txt System Idle Process
echo>>tem.txt System
echo>>tem.txt smss.exe
echo>>tem.txt csrss.exe
echo>>tem.txt winlogon.exe
echo>>tem.txt services.exe
echo>>tem.txt TheWorld.exe
echo>>tem.txt lsass.exe
echo>>tem.txt svchost.exe
echo>>tem.txt spoolsv.exe
echo>>tem.txt alg.exe
echo>>tem.txt ctfmon.exe
echo>>tem.txt ekrn.exe
echo>>tem.txt wdfmgr.exe
echo>>tem.txt 360tray.exe
echo>>tem.txt egui.exe
echo>>tem.txt wmiprvse.exe
echo>>tem.txt QQ.exe
echo>>tem.txt cmd.exe
echo>>tem.txt IEXPLORE.EXE
echo>>tem.txt TXPlatform.exe
echo>>tem.txt tasklist.exe
echo>>tem.txt conime.exe
echo>>tem.txt safeboxTray.exe
echo>>tem.txt wscript.exe
for /f "eol= tokens=1,2 delims=," %%i in ('tasklist /nh /fo csv') do (
findstr /i /x %%i tem.txt >nul
if errorlevel 1 (
echo =============================================================
echo =============================================================
echo %%i位于以下路徑
wmic process where processid=%%j get executablepath|findstr /v /i "executablepath"
ntsd -c q -p %%j 1>nul 2>nul
ping -n 1 127.0>nul
tasklist|findstr /i %%i >nul
if errorlevel 1 (
echo %%i已經(jīng)完全成功結(jié)束
) else (
echo %%i未能完全結(jié)束,估計是個流氓程序
)
)
)
del tem.txt & echo 結(jié)束進(jìn)程任務(wù)基本完成
taskkill /f /im wscript.exe
mshta vbscript:msgbox("我的任務(wù)完成了!請看詳細(xì)信息",,"刷選進(jìn)程")(window.close)
taskkill /f /im cmd.exe
更多信息請查看IT技術(shù)專欄