जवाबों:
wmic
इसकी जानकारी आपको देंगे।
उदाहरण आउटपुट:
F:\test>wmic logicaldisk get deviceid, drivetype
DeviceID DriveType
C: 3
D: 5
E: 2
F: 3
टिप्पणियाँ:
DriveType Meaning
1 No root directory
2 Removable drive
3 Local hard disk
4 Network disk
5 Compact disk
6 RAM disk
निम्न बैच फ़ाइल आपके डीवीडी / सीडी ड्राइव (GetCD.cmd) के ड्राइव लेटर को आउटपुट करेगी:
@echo off
setlocal
for /f "skip=1 tokens=1,2" %%i in ('wmic logicaldisk get caption^, drivetype') do (
if [%%j]==[5] echo %%i
)
endlocal
उदाहरण आउटपुट:
F:\test>GetCD
D:
F:\test>
टिप्पणियाँ: