电脑双击硬盘打不开

来源:百度知道 编辑:UC知道 时间:2024/05/28 15:52:18
以前安装瑞星,前几天删除了,后来就发现双击C盘会提示说找不到“C:用户名。VBS”,其他硬盘也是这样。而且文本文件也打不开,也是提示有个“VBS”找不到,求高手解决!!!!!!

将以下内容复制到记事本,然后文件另存为autorun免疫.bat,执行此文件。
@echo off
echo 正在免疫autorun病毒,请稍后...
rem 删除所有autorun.inf
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf del /a /q %%i:\autorun.inf
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf rd /s /q %%i:\autorun.inf
rem 创建免疫的autorun.inf文件夹
for %%i in (c d e f g h i j) do if exist %%i: md %%i:\autorun.inf
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf md %%i:\autorun.inf\已免疫..\
rem 隐藏autorun.inf文件夹
for %%i in (c d e f g h i j) do if exist %%i:\autorun.inf attrib +s +h +r %%i:\autorun.inf
rem 清除MountPoints2注册项
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2 /f
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2 /f
rem 恢复驱动器shell默认值
reg add HKCR\Drive\shell /ve /d none /f
echo.
echo 免疫完成!<