window-study

一、快捷键
ctrl + alt + delete: 结束有问题的程序
二、运行命令
calc 计算器
cleanmgr 清理
cmddos 命令窗口
services.msc 服务

三、window的垃圾清理
1,DOS命令
window+R-->cleanmgr
2,运行bat文件
新建文件命名.bat结尾文件中把一下内容复制进去
-->@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 
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

三、

你可能感兴趣的:(window)