另类的电脑知识

1、3秒查看电脑配置

win + r,输入:dxdiag
在这里插入图片描述在这里插入图片描述

2、电脑网网速慢

win + r,输入:gpedit.msc
在这里插入图片描述在这里插入图片描述在这里插入图片描述

3、DOS命令清理电脑垃圾

桌面新建 clear.txt 文本,输入以下内容,再将后缀名 .txt修改为 .bat 双击即可

color a
@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 清除系统LJ完成! 
echo. & pause

猜你喜欢

转载自blog.csdn.net/weixin_44505194/article/details/104600964