什么编程可以完全清除电脑里的垃圾文件..小弟求助
发布网友
发布时间:2022-04-30 00:32
我来回答
共6个回答
热心网友
时间:2022-06-27 06:36
新建一个记事本,输入下面的内容
@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%\小甜饼s\*.*
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
然后改成"清除系统LJ.bat",就可以了。
热心网友
时间:2022-06-27 06:36
电脑只要持续使用,电脑里的垃圾文件随时都在产生,所以完全清除是不可能的,要养成定期清理垃圾文件的习惯,可以用360安全卫士对垃圾文件进行清理。
热心网友
时间:2022-06-27 06:37
编程?如果能编出来,就是个软件了。
下载一个软件吧:
(全能优化)
http://www.tweakassist.com/cn/download/TweakUp.zip
热心网友
时间:2022-06-27 06:37
这个程序是自动清理电脑里的垃圾而不会破坏系统 比很多软件都好哦
新建一个记事本并输入以下的内容:
@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
打开还是记事本的看清楚这里最后将它保存,然后更名为“清除系统LJ.bat”
ok!你的LJ清除器就这样制作成功了!
以后只要双击运行该文件,当屏幕提示“清除系统LJ完成!就还你一个“苗条”的系统了!!
热心网友
时间:2022-06-27 06:38
呵呵,从MOP上看到的,把下面这段程序复制到记事本里,把扩展名改成“bat”
然后双击该程序,等着,ok
据说可以的话可以清理出上G的空间,,,,
@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%\小甜饼s\*.*
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
我试过了,不伤机器的
热心网友
时间:2022-06-27 06:39
随便一种语言
比如
C C++ C# java basic . . .