清理电脑垃圾cmd命令大全 - 智学轩城

清理电脑垃圾cmd命令大全

大周皇族 头像

大周皇族

2026-05-01 15:31:29

查看磁盘空间

dir /s /a-d
# 清理临时文件 del /q /f /s /a c:\windows\temp.
# 清理系统缓存 rmdir /s /q c:\windows\temp
# 清理系统日志 del c:\windows\temp.log
# 清理回收站 rmdir /s /q c:\recycle.bin
# 清理系统临时文件夹 del /q /f c:\windows\temp.
# 清理系统32位临时文件夹 del /q /f c:\windows\temp.tmp
# 清理系统64位临时文件夹 del /q /f c:\windows\temp.tmp
# 清理系统DLL缓存 del /q /f c:\windows\winsxs\manifests.
# 清理系统启动项 del c:\windows\start menu\programs\startup.
# 注意:执行以上命令前请备份重要数据。