当前位置:DOS资源站资料中心批处理教程 → 批处理清空回收站

批处理清空回收站

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2008-5-20 18:27:22

@echo off
color 1f
title 清空回收站
mode con lines=4 cols=23
echo.
echo   请稍候 ...
setlocal enabledelayedexpansion
for /f "delims=\" %%i in ('fsutil fsinfo drives^|find /v ""') do (
    set var=%%i
    set drive=!var:~-2!
    fsutil fsinfo drivetype !drive!|find "固定">nul && (
    if exist !drive!\RECYCLER rd/s/q !drive!\RECYCLER >nul 2>nul
    if exist !drive!\Recycled rd/s/q !drive!\Recycled >nul 2>nul
    )
)
taskkill /f /im explorer.exe >nul
start "" "explorer.exe"