如何写一个.bat文件来清除电脑回收站
发布网友
发布时间:2022-04-24 17:27
我来回答
共2个回答
热心网友
时间:2023-10-26 06:12
回收站位置是在 X:\RECYCLER\这个文件夹里。
你取消隐藏系统文件。可以看到
@echo off
for %%a in (c d e f g h i j k l m n o p q r s t u v w x y z) do (
del /f /s /q %%a:\RECYCLER\*.*
)
echo end...
这只能在XP可用,win7就不行了。因为有保护。
del /f /s /q %systemdrive%\recycled\*.*
这个是95系统用的。FAT格式的。NTFS的就不能用了。
所以说你现在用纯批处理清回收站不现实。
BAT论坛有第三方可以办到。
热心网友
时间:2023-10-26 06:13
@echo off
echo 即将开始清理系统垃圾文件
pause
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 清理系统垃圾完成!
echo. & pause
将上面的内容放在 记事本 里另存为 清理垃圾.bat追问我想清空回收站 而不是清理垃圾 谢谢