boot里的文件是系统启动用的,不能删!program file是你的安装程序,不能删!programdata这个文件存了用户的数据,不能删!User是用户信息,不能删!windows系统运行的主要程序都在里面就跟不能删了.建议用一些优化工具给C盘瘦身,如超级兔子,魔方,windows优化大师清理.关于C盘文件详细的分析请看我博客里文章,地址在下面
C盘原则上只要不是Window文件夹里的文件都能删。但是,乱删除,就怕涉及到系统文件。你为什么装之前不先把C盘格式化呢~
文件名应该是程序crash的时候dump下来的内存中的内容,应该可以删除。
根目录下的一些系统文件不能随意删除,因为包含有启动信息,比如 boot.ini 什么的。
建议用Ghost 安装win7 ,个人推荐64位的,32位的比较垃圾!安装的同时就把以前的文件都删除了,还有不要把有用的文件存在C盘,以防系统崩溃要重新安装时丢失重要文件!
不清楚,如果告诉我这个压缩文件完整路径,应该知道是做什么的,删除应该没事,不过你可以先备份到别的地方,然后再删除,如果出现问题再移动回去,如果没有问题可以彻底删除
这是天翼宽带异常关闭/崩溃留下的错误报告。你最近一定在用天翼无线网卡,直接删除无碍。
最好还是在安装时就格式化,如果你不想重装,并且只是想让c盘可用空间大一点的话可以试试这个
新建一个txt格式的文件,把以下内容复制进去
@echo off
::修正于2008-07-29
Title 系统垃圾文件清理器
echo.
echo ***** 系统垃圾文件清理器 *****
echo
echo.
echo 本程序特点:
echo 鉴于很多人把IE缓存等文件夹转移到非系统盘,
echo 所以,本程序清理垃圾文件时,首先进行判断系统
echo 的设置。
echo.
echo 优点:清理位置更加准确,策略更加科学。
echo.
echo 开始执行清理……
echo.
echo 正在检查cookies、历史纪录等目录位置(当前用户)……
reg query HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders /v Cache%temp%\cleantmp.txt
reg query HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders /v Cookies%temp%\cleantmp.txt
reg query HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders /v History%temp%\cleantmp.txt
reg query HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders /v NetHood%temp%\cleantmp.txt
reg query HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders /v Recent%temp%\cleantmp.txt
echo 正在清理Cookies、IE缓存、历史纪录等(当前用户)……
for /f tokens=3* %%a in (%temp%\cleantmp.txt) do (
for /d %%i in (%%a %%b\*.*) do rd /s /q %%i
del /a /f /s /q %%a %%b\*.*
)
::跟上面几项未必是重复的(!),也是对当前用户目录
echo 正在清理临时文件 (系统目录)……
del /a /f /s /q %userprofile%\Locals~1\Tempor~1\*.*
del /a /f /s /q %userprofile%\Locals~1\Temp\*.*
del /a /f /s /q %userprofile%\cookies\*.*
del /a /f /s /q %userprofile%\recent\*.*
del /a /f /s /q %Temp%\*.*
del /a /f /s /q %Tmp%\*.*
del /a /f /s /q %HomePath%\..\IconCache.db
echo 正在清理系统目录中的垃圾文件 (稍候,需要点时间)……
del /a /f /s /q %SystemRoot%\*._mp
del /a /f /s /q %SystemRoot%\*.bak
del /a /f /s /q %SystemRoot%\*.log
del /a /f /s /q %SystemRoot%\*.dmp
del /a /f /s /q %SystemRoot%\*.gid
del /a /f /s /q %SystemRoot%\*.old
del /a /f /s /q %SystemRoot%\*.query
del /a /f /q %SystemRoot%\*.tmp
rd /s /q %SystemRoot%\Downloaded Program Files
rd /s /q %SystemRoot%\Offline Web Pages
rd /s /q %systemroot%\Connection Wizard
rd /s /q %SystemRoot%\SoftwareDistribution\Download
rd /s /q %SystemRoot%\Assembly
rd /s /q %SystemRoot%\Help
rd /s /q %SystemRoot%\ReinstallBackups
del /a /s /q %SystemRoot%\inf\*.pnf
del /a /f /s /q %SystemRoot%\inf\InfCache.1
dir %SystemRoot%\inf\*.* /ad/b %SystemRoot%\vTmp.txt
for /f %%a in (%SystemRoot%\vTmp.txt) do rd /s /q %SystemRoot%\inf\%%a
del /a /f /s /q %SystemRoot%\driver?\*.pnf
del /a /f /s /q %SystemRoot%\driver?\InfCache.1
del /a /f /s /q %SystemDrive%\driver?\*.pnf
del /a /f /s /q %SystemDrive%\driver?\InfCache.1
rd /s /q %SystemRoot%\temp & md %SystemRoot%\temp
del /a /f /s /q %SystemRoot%\Prefetch\*.*
del /a /f /s /q %SystemRoot%\minidump\*.*
echo 正在清除无用的磁盘检错文件 (系统分区)……
del /a /f /q %SystemDrive%\*.chk
dir %SystemDrive%\found.??? /ad/b %SystemRoot%\vTmp.txt
for /f %%a in (%SystemRoot%\vTmp.txt) do rd /s /q %SystemDrive%\%%a
echo 正在清理系统升级补丁留下来的反安装目录 (已修正能正确清除)……
dir %SystemRoot%\$*$ /ad/b %SystemRoot%\vTmp.txt
for /f %%a in (%SystemRoot%\vTmp.txt) do rd /s /q %SystemRoot%\%%a
echo 正在清除常见的软件垃圾项目 (按默认目录)……
rd /s /q %ProgramFiles%\InstallShield Installation Information
Ren %ProgramFiles%\Common~1\Real\Update_OB\realsched.exe realsched.ex_
Del %ProgramFiles%\Common~1\Real\Update_OB\realsched.exe
Reg Delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v TkBellExe /f
rd /s /q %ProgramFiles%\Tencent\QQGame\Download
taskkill /f /im TIMPlatform.exe /t
del /a /f /s /q %ProgramFiles%\Tencent\QQ\TIMPlatform.exe
del /a /f /s /q %ProgramFiles%\Kaspersky Lab\*.tmp
echo.
echo 全部清理完毕,任意键退出 (注: 若提示文件没找到是正常的)……
del %SystemRoot%\vTmp.txt
然后把后缀名改为bat
这个的作用不是你说的功能,它的作用只是清理系统垃圾而已,但就是这样也能清出不少空间的
标签:WIN7,C盘,删除