- 帖子
- 1282
- 积分
- 723
- 技术
- 13
- 捐助
- 50
- 注册时间
- 2010-4-18
|
更新:运行下面这个bat批处理文件。
系统还是“电脑公司 ghost xp sp3急速纯净版2010.06”这个版本
好像已经不弹出窗口了。
for /f "skip=1 delims=" %%a in ('Wmic LogicalDisk Where "DriveType='2' and SupportsDiskQuotas='FALSE'" Get DeviceID') do call :s1 %%a
for /f "skip=1 delims=" %%a in ('Wmic LogicalDisk Where "DriveType='3'" Get DeviceID') do call :s1 %%a
:s1
if "%~1"=="" goto:eof
if exist "%1\RECYCLER" del /f /s /q /ah "%1\RECYCLER\*.*" >nul 2>nul
if exist "%1\RECYCLER" del /f /s /q /a "%1\RECYCLER\*.*" >nul 2>nul
if exist "%1\RECYCLER" rd /s /q "%1\RECYCLER" >nul 2>nul
if exist "%1\Recycled" del /f /s /q /ah "%1\Recycled\*.*" >nul 2>nul
if exist "%1\Recycled" del /f /s /q /a "%1\Recycled\*.*" >nul 2>nul
if exist "%1\Recycled" rd /s /q "%1\Recycled" >nul 2>nul
if exist "%1\kvideo_cache" del /f /s /q /ah "%1\kvideo_cache\*.*" >nul 2>nul
if exist "%1\kvideo_cache" del /f /s /q /a "%1\kvideo_cache\*.*" >nul 2>nul
if exist "%1\kvideo_cache" rd /s /q "%1\kvideo_cache" >nul 2>nul
if exist "%1\$RECYCLE.BIN" del /f /s /q /ah "%1\$RECYCLE.BIN\*.*" >nul 2>nul
if exist "%1\$RECYCLE.BIN" del /f /s /q /a "%1\$RECYCLE.BIN\*.*" >nul 2>nul
if exist "%1\$RECYCLE.BIN" rd /s /q "%1\$RECYCLE.BIN" >nul 2>nul
goto:eof |
|