双击打开新建文本文档,把下面的代码复制进去,然后保存文件
@echo off
title 清理AUTORUN.INF --- 哈喽 [2012]
cls
color fc
echo.&echo.
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 (
if exist %%a: (
if exist %%a:autorun.inf (
echo 发现%%a盘上有AUTORUN.INF,正在清理...
attrib %%a:autorun.inf -s -h -r
for /f "tokens=2* delims==" %%b in (%%a:autorun.inf) do (
if exist %%a:%%b (
attrib %%a:%%b -s -h -r
del %%a:%%b
echo 清理了%%a盘上AUTORUN.INF相关联的%%b
)
)
del %%a:autorun.inf
echo %%a盘上AUTORUN.INF清理成功!
) else (
echo %%a盘上没有发现AUTORUN.INF。
)
echo.&echo.
)
)
reg query "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerMountPoints2">nul
if %ERRORLEVEL%==0 (
echo Y|reg delete "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerMountPoints2" /f>nul
echo 磁盘卷装入点清理完成!)
echo.&echo.&echo 完成清理,按任意键退出!&pause>nul
双击桌面上“我的电脑”图标,点击菜单栏上的“工具”——“文件夹选项”
切换到“查看”选项卡,在高级设置列表中找到“隐藏已知文件类型的扩展名”,把勾去掉,单击“确定”
鼠标右键新建 文本文档.txt,点击“重命名”,键入1.bat,回车,然后双击运行该批处理文件
再把下面的代码复制到文本文档中,另存为1.vbs
Set WshShell = WScript.CreateObject("WScript.Shell")
p1 = "HKEY_CLASSES_ROOTDirectoryshell"
p2 = "none"
WshShell.RegWrite p1, p2
p1 = "HKEY_CLASSES_ROOTDriveshell"
WshShell.RegWrite p1, p2
X = WshShell.Run("REGSVR32 /I /S SHELL32.DLL",4,True)
Set WshShell = Nothing
MyBox = MsgBox("Folders will now Open when double clicked", 4096, "Finished!")