[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[已解决]批处理删除文件夹遇到没插存储卡的可移动磁盘如何不弹窗口?

rd /s /q "f:\RECYCLER" >nul 2>nul

xp系统下运行这个命令,

1、如果f盘符不存在,不会弹出信息菜单

2、如果f盘符光驱,也不会弹出信息菜单

3、如果f盘符是笔记本的读卡器,里面也没有插存储卡的话,会弹出一个没有找到软驱的类似菜单。

每次都只有点“继续”按钮,才能运行。

这种情况,如何让这个命令后台静默运行?而不弹出这种菜单?

基本确定是xp系统的问题。
使用精简版本的电脑公司xp ghost系统,出现的怪问题。

更新:运行下面这个bat批处理文件(目的是删除 我的电脑 里面 所有盘下面的指定目录)。

好像已经不弹出窗口了。
  1. for /f "skip=1 delims=" %%a in ('Wmic LogicalDisk Where "DriveType='2' and SupportsDiskQuotas='FALSE'" Get DeviceID') do call :s1 %%a
  2. for /f "skip=1 delims=" %%a in ('Wmic LogicalDisk Where "DriveType='3'" Get DeviceID') do call :s1 %%a
  3. :s1
  4. if "%~1"=="" goto:eof
  5. if exist "%1\RECYCLER" del /f /s /q /ah "%1\RECYCLER\*.*" >nul 2>nul
  6. if exist "%1\RECYCLER" del /f /s /q /a "%1\RECYCLER\*.*" >nul 2>nul
  7. if exist "%1\RECYCLER" rd /s /q "%1\RECYCLER" >nul 2>nul
  8. if exist "%1\Recycled" del /f /s /q /ah "%1\Recycled\*.*" >nul 2>nul
  9. if exist "%1\Recycled" del /f /s /q /a "%1\Recycled\*.*" >nul 2>nul
  10. if exist "%1\Recycled" rd /s /q "%1\Recycled" >nul 2>nul
  11. if exist "%1\kvideo_cache" del /f /s /q /ah "%1\kvideo_cache\*.*" >nul 2>nul
  12. if exist "%1\kvideo_cache" del /f /s /q /a "%1\kvideo_cache\*.*" >nul 2>nul
  13. if exist "%1\kvideo_cache" rd /s /q "%1\kvideo_cache" >nul 2>nul
  14. if exist "%1\$RECYCLE.BIN" del /f /s /q /ah "%1\$RECYCLE.BIN\*.*" >nul 2>nul
  15. if exist "%1\$RECYCLE.BIN" del /f /s /q /a "%1\$RECYCLE.BIN\*.*" >nul 2>nul
  16. if exist "%1\$RECYCLE.BIN" rd /s /q "%1\$RECYCLE.BIN" >nul 2>nul
  17. goto:eof
复制代码
1

评分人数

    • zm900612: 感谢给帖子标题标注[已解决]字样PB + 2

没碰到过,不过也许可以这样?
  1. if exist "f:\RECYCLER\nul" rd /s /q "f:\RECYCLER" >nul 2>nul
复制代码

TOP

本帖最后由 batman 于 2011-5-30 16:20 编辑

还是调用vbs来隐藏运行吧:
  1. @echo off
  2. mshta vbscript:createobject("wscript.shell").run("cmd /c rd /s /q f:\RECYCLER",0)(window.close)
复制代码
***共同提高***

TOP

我已经可以通过vbs文件,调用bat文件实现后台静默运行。

一般的bat文件,都能实现后台运行。

就这个命令,不能实现。

TOP

还是调用vbs来隐藏运行吧:
@echo off
mstha vbscript:createobject("wscript.shell").run("cmd/crd /s /q f:\RECYCLER",0)(window.close)

batman 发表于 2011-5-30 16:10


这个方法不行。我试验了。

一般的bat批处理命令,都是可以用这个方法的。

关键是我提到的那种情况,就不行了。

TOP

5# ygqiang
刚才笔误,已修改,见笑了。。。
***共同提高***

TOP

if exist f: del /f /s /q /ah "f:\RECYCLER\*.*" >nul 2>nul
if exist f: del /f /s /q /a "f:\RECYCLER\*.*" >nul 2>nul

if exist f: rd /s /q "f:\RECYCLER" >nul 2>nul

用这个命令,还是不行。

TOP

mshta vbscript:createobject("wscript.shell").run("cmd /c rd /s /q f:\RECYCLER",0)(window.close)

这个方法,也用了。

还是一样会弹出窗口啊。

TOP

那就先检测盘符的类型吧
***共同提高***

TOP

“if esist f:”不行的话,
“if exist f:\RECYCLER\”也没效果吗?
那就不知道了

TOP

那就先检测盘符的类型吧
batman 发表于 2011-5-30 16:50


这个不懂啊。什么意思?

弹出窗口的提示是:

TOP

“if esist f:”不行的话,
“if exist f:\RECYCLER\”也没效果吗?
那就不知道了
zm900612 发表于 2011-5-30 16:50


试过了,没有效果

TOP

检查盘符类型:
fsutil fsinfo drivetype f:
或者用wmic

TOP

楼上说的极是啊,用命令检查后,根据返回值,决定怎么做 0,0
不知道检查的时候会弹不。。。

TOP

先判断要删除的文件夹是否存在,再rd 也不行??
没道理吧。。。
技术问题请到论坛发帖求助!

TOP

返回列表