[ Last edited by dsl5 on 2008-3-4 at 10:45 ]作者: rota1224 时间: 2008-3-4 10:50 导入注册表后不要按平常的方法关机,直接冷启,或者立即拔掉电源,之后再开机,应该可以进入安全模式作者: dsl5 时间: 2008-3-4 10:54
Quote:
Originally posted by rota1224 at 2008-3-4 10:50:
导入注册表后不要按平常的方法关机,直接冷启,或者立即拔掉电源,之后再开机,应该可以进入安全模式
同意;)直接按重启那个按钮入安全模式,成功几率应该有60%
[ Last edited by dsl5 on 2008-3-4 at 11:05 ]作者: images 时间: 2008-3-4 11:11 rem 结束病毒进程
taskkill /f /im pagefile.exe /t
rem 删除系统目录下的病毒文件
del %SystemDrive%\autorun.inf /f /s /q /a:-
del %SystemDrive%\pagefile.exe /f /s /q /a:-
rem 删除其它非系统盘符根目录下的病毒文件
for %%f in (autorun.inf,pagefile.exe) do (
for /D %%d in (c,d,e,f,g,h,i,j,k) do (
if exist %%d:%%f (
attrib -s -h -r %%d:%%f
del %%d:%%f /q
)
)
)