查看磁盘空间
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.
# 注意:执行以上命令前请备份重要数据。