Chinaunix首页 | 论坛 | 博客
  • 博客访问: 537858
  • 博文数量: 9
  • 博客积分: 10010
  • 博客等级: 上将
  • 技术积分: 2612
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-07 14:27
文章分类

全部博文(9)

文章存档

2009年(2)

2008年(7)

我的朋友

分类: WINDOWS

2008-04-04 22:53:24

一开机就跳出对话框,脚本:C:\Windows\win.vbe,行:2,字符:1,错误:系统找不到指定文件,代码:80070002,源:(null),这是什么意思啊?
 
新建文本 以下内容复制保存为 BAT

@echo on
taskkill /im explorer.exe /f
taskkill /im wscript.exe
start reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\EXplorer\Advanced /v ShowSuperHidden /t REG_DWORD /d 1 /f
start reg import kill.reg
del c:\autorun.* /f /q /as
del %SYSTEMROOT%\system32\autorun.* /f /q /as
del d:\autorun.* /f /q /as
del e:\autorun.* /f /q /as
del f:\autorun.* /f /q /as
del g:\autorun.* /f /q /as
del h:\autorun.* /f /q /as
del i:\autorun.* /f /q /as
del j:\autorun.* /f /q /as
del k:\autorun.* /f /q /as
del l:\autorun.* /f /q /as
start explorer.exe



@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统LJ完成!
echo. & pause
 
开始运行MSCONFIG 将带有.vbs 的启动项目出除
 
 
修改注册表.HKEY_CURRENT_USER\Software\Microsoft\Windows\Current Version的子项Run

将带有VBS的删除
阅读(5170) | 评论(2) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2008-08-13 12:52:24

你好!!麻烦你能不能说的再详细一点啊,具体的操作步骤!谢谢啦

chinaunix网友2008-04-21 19:53:05

谢谢!