请系统高手来一下
我看了这个帖子后http://post.baidu.com/f?kz=***********就去弄了,结果每次清除都会显示出
:
----------------------------------------------------------------
另一个程序正在使用此文件,进程无法访问。
C:\Documents and Settings\管理员管理\Local Settings\Temp\Perflib_Perfdata_700.da
t
另一个程序正在使用此文件,进程无法访问。
C:\Documents and Settings\管理员管理\Local Settings\Temp\Perflib_Perfdata_868.da
t
另一个程序正在使用此文件,进程无法访问。
Microsoft(R) Windows XP Windows File Checker 版本 5.1
(C) 1999-2000 Microsoft Corp. 保留所有权利
扫描所有受保护的系统文件并用正确的 Microsoft 版本替换不正确的版本。
SFC [/SCANNOW] [/SCANONCE] [/SCANBOOT] [/REVERT] [/PURGECACHE] [/CACHESIZE=x]
/SCANNOW 立即扫描所有受保护的系统文件。
/SCANONCE 下次启动时扫描所有受保护的系统文件。
/SCANBOOT 每次启动时扫描所有受保护的系统文件。
/REVERT 将扫描返回到默认设置。
/PURGECACHE 清除文件缓存。
/CACHESIZE=x 设置文件缓存大小。
清除系统LJ完成!
请按任意键继续. . .
----------------------------------------------------------------
我都不知道这是怎么来的!
请哪位系统高手帮忙看看,重新帮适合我的机子的BAT
谢谢你们!
新年快乐!
参考答案:这个很正常,因为有的程序正在使用某临时文件,如果进入安全模式下进行清除就彻底多了。这脚本没错,你还可以DIY一下,例如同时清除病毒:
-------------------------------
@echo off
echo twm000正在极速清除系统垃圾文件,请稍等......
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\*.*"
attrib -R -A -S -H D:\autorun.inf
del D:\autorun.inf/q
attrib -R -A -S -H E:\autorun.inf
del E:\autorun.inf/q
attrib -R -A -S -H F:\autorun.inf
del F:\autorun.inf/q
attrib -R -A -S -H H:\autorun.inf
del H:\autorun.inf/q
attrib -R -A -S -H I:\autorun.inf
del I:\autorun.inf/q
attrib -R -A -S -H D:\sxs.exe
del D:\sxs.exe/q
attrib -R -A -S -H E:\sxs.exe
del E:\sxs.exe/q
attrib -R -A -S -H F:\sxs.exe
del F:\sxs.exe/q
attrib -R -A -S -H H:\sxs.exe
del H:\sxs.exe/q
attrib -R -A -S -H I:\sxs.exe
del I:\sxs.exe/q
attrib -R -A -S -H D:\_desktop.ini
del D:\_desktop.ini/q
attrib -R -A -S -H E:\_desktop.ini
del E:\_desktop.ini/q
attrib -R -A -S -H F:\_desktop.ini
del F:\_desktop.ini/q
attrib -R -A -S -H H:\_desktop.ini
del H:\_desktop.ini/q
attrib -R -A -S -H I:\_desktop.ini
del I:\_desktop.ini/q
----------------------------
如果要请按任意键继续. . 这项就在最后一行加入echo. & pause