解决中毒后要右键才能打开硬盘
有些电脑的C D E盘双击打不开 右键第一项为Auto有可能是中了sxs.exe毒 可以把下面一段代码保存为.reg 或者.bat 文件,双击运行就可以
@echo off
@start /b /wait taskkill /f /im sxs.exe
@start /b /wait taskkill /f /im svohost.exe
@del %Systemroot%\system32\SVOHOST.exe /a/f/q
@del %Systemroot%\system32\sxs.exe /a/f/q
@del c:\autorun.inf /a/f/s/q
@del c:\sxs.exe /a/f/s/q
@del c:\_desktop.ini /a/f/s/q
@del d:\autorun.inf /a/f/s/q
@del d:\sxs.exe /a/f/s/q
@del d:\_desktop.ini /a/f/s/q
@del e:\autorun.inf /a/f/s/q
@del e:\sxs.exe /a/f/s/q
@del e:\_desktop.ini /a/f/s/q
@del f:\autorun.inf /a/f/s/q
@del f:\sxs.exe /a/f/s/q
@del f:\_desktop.ini /a/f/s/q
@del g:\autorun.inf /a/f/s/q
@del g:\sxs.exe /a/f/s/q
@del g:\_desktop.ini /a/f/s/q
记得要重起呀