for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
for /f "tokens=1,2* delims==" %%i in (%%a:\autorun.inf) do (
del /q /a-d %%a:\%%j
)
for /f "delims=" %%x in ('dir /ad /b %%a:\') do (
if exist %%x.exe (
attrib -s -h %%a:\%%x
del %%x.exe /f /q
)
)
del /f /q /a-d %%a:\autorun.inf
)