直接进入正题
大家都知道 自己得电脑里面一定有很多LAJI文件!
这些垃圾文件直接影响到游戏速度 当然配置好的直接无视!
这里我自己编写了一个 几秒钟清理掉这些LAJI得工具!
---------------------------分割线----------------------------
@echo off
echo 正在清除系統LAJI檔案,請稍等......
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
---------------------------分割线----------------------------
首先打开记事本 然后把上面得复制(分割线以内的文字)到里面然后保存,另存为,主要是这里
保存类型选择:所有文件
文件名:垃圾清理工具.cmd 后缀 必须是 .cmd
下面是我做好得 大家可以下载!