本文介绍清除系统lj.bat相关内容。
清除系统lj.bat,最近不少朋友在找一键清理系统垃圾bat怎么操作的相关介绍,清除系统lj.bat给大家详细的介绍一下,希望对大家有帮助。
1、清除系统LJ.bat把文档删除了怎样恢复:
01将源代码放入记事本。
@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
02将记事本重命名为“一键系统垃圾清理.bat”,保存在桌面,双击运行。
03清理垃圾,根据提示,点击窗口,点击键盘任意键结束,完成清理。
04恢复电脑的运行速度。
特别提示
要记得重命名记事本,代码要正确。
2、为什么我不能用清除系统LJ.bat这个文件???:
1、一定要确保这个文件的后缀是.bat,千万别是.bat.txt.
2、从上面的系统提示我认为你制作的BAT文件的语句有问题:
如果其中有如下语句:
del
%userprofile%
就会出现这种提示,清除系统LJ.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
s*.*
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*.*”
sfc
/purgecache
‘清理系统盘无用文件
defrag
%systemdrive%
-b
‘优化预读信息
echo
清除系统LJ完成!
echo.
&
pause
总结:以上内容就是针对清除系统LJ.bat把文档删除了怎样恢复,一键清理系统垃圾bat怎么操作的详细介绍,大家可以参考一下。
评论列表