2、查看隐藏文件:打开“我的电脑”或者打开文件所在文件夹,点击菜单栏里的“工具”-文件夹选项-查看-“显示所有的文件和文件夹”这样就可以了!显示隐藏文件后,点击删除(反正不是系统文件没什么大碍)。
3、格式化一下d盘:我的电脑--工具--文件夹选项--查看--隐藏已知文件类型的扩展名--打去钩,新建个txt文件。
4、保存以下:
@echo off
echo 将在你的计算机上清理垃圾文件
echo. & pause
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 清除系统垃圾完成!
echo. & pause
5、保存为*.bat后缀格式即可,或者保存为txt后缀格式然后直接更改后缀名为*.bat也行,然后运行就是了。这个一般是清理你系统的日志文件和一些缓存和ie临时文件之类的东西,一般还是比较实用的。