Win7如何一键清理系统垃圾bat

Win7如何一键清理系统垃圾bat,第1张

1、复制上篇经验的代码,放入记事本

2、源代码如下:

@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

3、记事本重命名:清除系统LJ.bat(复制这个名称)

保存即可,双击运行。

4、可是清除垃圾

5、根据提示,点击窗口,点击键盘任意键结束,完成清理。

6、经过深度清理,恢复电脑的运行速度

7、轻松方便快捷,做成bat后放置在桌面。每次都很速度,谢谢,希望有所帮助。

新建记事本-打开放入代码-保存关闭-重命名记事本-完成-双击运行

windows7教程

1、点击“开始——程序——附件——记事本”,创建一个新的记事本。

2、将以下代码内容复制到新建的文本文档里

@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%\*.oldvdel /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

3、点击“文件——另存为”,文件名为“ 清除系统垃圾.bat ”,文件类型选择“所有文件”。

4、双击运行刚建立好的清除系统垃圾.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

清除系统LJ完成!

echo.

&

pause

把上面一段复制到记事本里。后缀名改为.bat就行了。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8088945.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存