你怎么改的?
Batcher 发表于 2011-4-29 20:52
原批处理内容是。。这个- @echo off
- del D:\sysset\menu\x.txt
- for /f %%A in (D:\sysset\menu\list.txt) do for /f %%b in ('D:\sysset\menu\md5.exe -n "%%A"') do echo %%b >>D:\sysset\menu\x.txt
- for /F %%c in (D:\sysset\menu\servermd5.txt) do findstr /s /B /c:"%%c" "D:\sysset\menu\x.txt" ||goto _error
-
- exit
- :_error
- echo 系统核心文件被修改,该机器可能已经染病毒,请联系网管!!! 该机器60秒内将关机!!
- shutdown -f -s -t 60
- pause
复制代码 list.txt内容是
C:\WINDOWS\system32\webcheck.dll
C:\WINDOWS\system32\d3d8.dll
C:\WINDOWS\system32\dsound.dll
servermd5.txt内容是
8EF94370FA71C84BDB7BD17831BBE255
500F386C016C334F898297EA52CA8733
A494C2E22412AA91EA176AF45F204A8B
然后还有个单独的文件md5.exe |