标题: [其他] 批处理如何判断U盘拔下并且重新启动计算机呢? [打印本页]
作者: asdfghasdfgh 时间: 2011-1-5 12:34 标题: 批处理如何判断U盘拔下并且重新启动计算机呢?
如何判断U盘拔下并且重新启动计算机呢?dos及windows下 判断方式是否不一样?
作者: andyrave 时间: 2011-1-5 13:10
- @echo off
- setlocal enabledelayedexpansion
- set "y=C D E F G H I J K L M N O P Q R S T U V W X Y Z"
- for %%a in (%y%) do (
- fsutil fsinfo drivetype %%a: | find /i "可移动驱动器" 1>nul 2>nul&&set a=1||set a=0
- if !a! equ 1 (set n=%%a&goto a))
- goto Restart
-
- :a
- echo 找到可移动驱动器 !n!:
- pause >nul
- exit
-
- :Restart
- shutdown -r -f -t 0
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |