CODE: [Copy to clipboard]
@ECHO off&cls&color 0b
for %%i in (c d e f) do (
cls&cd /d %%i:\
echo 正在处理%%i盘……
attrib _desktop.ini -s -h -r
attrib auto*.inf -s -h -r
attrib command.com -s -h -r
attrib pagefile.pif -s -h -r
attrib logo_1.exe -s -h -r
attrib *sy.exe -s -h -r
attrib sxs.exe -s -h -r
attrib logo1_.exe -s -h -r
attrib KILL.EXE -s -h -r
attrib SWS.DLL -s -h -r
attrib rose.exe -s -h -r
del _desktop.ini auto*.inf command.com pagefile.pif logo_1.exe *sy.exe sxs.exe logo1_.exe SWS32.DLL KILL.EXE SWS.DLL rose.exe /a/q/s/f
echo 对%%i盘的处理已经完毕...
pause>nul
)