百科网

首页 > 科技数码

科技数码

我来教你电脑内存清理命令是什么

科技数码佚名2023-01-15

计算机长时间使用之后就会产生很多很多的垃圾文件,有IE的缓存,软件临时配置文件,也有系统内存垃圾!用户若是长时间不关机就会出现卡顿的感觉,Windows长时间不关机我们就需要对其进行垃圾清理,阅读下文了解电脑内存清理命令与系统垃圾清理的一键bat制作教程

操作步骤:

1、在桌面空白处右键新建文本文档;

2、把下面的文字复制进去:

@echo offecho 正在清除系统垃圾文件,请稍等......del /f /s /q %systemdrive%*.tmpdel /f /s /q %systemdrive%*._mpdel /f /s /q %systemdrive%*.logdel /f /s /q %systemdrive%*.giddel /f /s /q %systemdrive%*.chkdel /f /s /q %systemdrive%*.olddel /f /s /q %systemdrive%recycled*.*del /f /s /q %windir%*.bakdel /f /s /q %windir%prefetch*.*rd /s /q %windir%temp * md %windir%tempdel /f /q %userprofile%cookies*.*del /f /q %userprofile%recent*.*del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"del /f /s /q "%userprofile%Local SettingsTemp*.*"del /f /s /q "%userprofile%recent*.*"echo 清除系统LJ完成!echo. * pause