联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
wmic logicaldisk get MediaType
@echo off for /f "delims=:" %%i in ('wmic logicaldisk get caption^,drivetype^|findstr "3"') do set last=%%i echo The last drive is:%last%盘 pause
@echo off for /f "tokens=3* delims=," %%i in ('WMIC Path Win32_LogicalDisk Get DeviceID^,DriveType^,VolumeDirty^,Description /format:csv^|findstr/v /i "2 TRUE"') do (set last=%%i) echo The last drivedisk is:%last% 盘 pause
@echo off for /f "skip=1 delims=:" %%i in ('WMIC Path Win32_LogicalDisk Get DeviceID^,DriveType^,VolumeDirty^|findstr/v /i "2 TRUE"') do set last=%%i echo %last% pause