发布网友 发布时间:2022-04-22 22:05
共2个回答
热心网友 时间:2022-06-08 05:06
TEMP、Temporary Internet Files 这两个可以C盘空间不断变小的罪魁!
解决办法:1.先在D盘建立一个TEMP,然后:我的电脑--高级--属性--环境变量--选中TEMP--改为D:\TEMP
2.打开IE浏览器--工具--Internet选项--Internet临时文件中点“设置”--移动文件夹--就可以移动到其他盘啦!
热心网友 时间:2022-06-08 06:24
桌面右键 新建文本文档,输入以下内容:
@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
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 清理系统垃圾完成!
echo. & pause
保存为:一键清理系统垃圾.bat
注意后缀名为“.bat”,然后双击运行就可。