听老歌 发表于 2011-12-03 17:07

DOS批处理扫描系统文件

DOS批处理扫描系统文件








F:
cd\
@echo off
cls&color 0b&title 系统文件扫描工具
@echo =====================================
@echo 本工具将会扫描你的系统文件是否缺失
@echo 本工具不会修复缺失的文件!
pause
if not exist %windir%\explorer.exe echo 严重缺失!Windows默认文件管理器>>20191.txt
if not exist %windir%\explorer.scf echo 缺失explorer.scf>>20191.txt
if not exist %windir%\notepad.exe echo 缺失记事本>>20191.txt
if not exist %windir%\regedit.exe echo 缺失regedit.exe>>20191.txt
if not exist %windir%\TASKMAN.EXE echo 缺失TASKMAN.EXE>>20191.txt
if not exist %windir%\twain.dll echo 缺失twain.dll>>20191.txt
if not exist %windir%\twain_32.dll echo 缺失twain_32.dll>>20191.txt
if not exist %windir%\twunk_16.exe echo 缺失twunk_16.exe>>20191.txt
if not exist %windir%\twunk_32.exe echo 缺失twunk_32.exe>>20191.txt
if not exist %windir%\vmmreg32.dll echo 缺失vmmreg32.dll>>20191.txt
if not exist %windir%\wmprfCHS.prx echo 缺失wmprfCHS.prx>>20191.txt
if not exist %windir%\WMSysPr9.prx echo 缺失WMSysPr9.prx>>20191.txt
if not exist %windir%\xinstaller.dll echo 缺失xinstaller.dll>>20191.txt
if not exist %windir%\xinstaller.exe echo 缺失xinstaller.exe>>20191.txt
if not exist %windir%\system32\rundll32.exe echo 严重缺失!rundll32.exe>>20191.txt
if not exist %windir%\system32\hal.dll echo 严重缺失!hal.dll>>20191.txt
if not exist %windir%\system32\taskmgr.exe echo 严重缺失! Windows任务管理器>>20191.txt
if not exist %windir%\system32\mspaint.exe echo 缺失画图工具>>20191.txt
if not exist %windir%\system32\cmd.exe echo 缺失批处理工具>>20191.txt
if not exist %windir%\system32\cmmon32.exe echo 缺失cmmon.exe>>20191.txt
@echo 扫描完成
type 20191.txt
pause
del 20191.txt
pause
exit
统统复制进记事本,后缀bat/cmd,运行
已经过测试,7支持性未知

健康木乃伊 发表于 2011-12-22 23:03

楼主辛苦
页: [1]
查看完整版本: DOS批处理扫描系统文件