如何在Windows下检测CLI中的当前媒体类型? (DVD-RW,BD-R等)

如何在 Windows下检测CLI中的当前媒体类型? (DVD-RW,BD-R等)

我尝试过使用wmic cdrom get / format:list但没有关于当前媒体类型的信息.

我想检测光盘是CD,DVD,BD,RW,DL ……等.在计算机下的Windows GUI中,我们可以根据光驱显示的图标查看信息.

此外,我找不到可用性和功能值的含义,如果你知道一个文件谈论它,它会很棒.

C:\>wmic cdrom get /format:lis

Availability=3
Capabilities={3,4,7}
CapabilityDescriptions={"Random Access"," Supports writing"," Supports Removable
 Media"}
Caption=HL-DT-ST BD-RE  BH12LS35
CompressionMethod=UnkNown
ConfigManagerErrorCode=0
ConfigManagerUserConfig=FALSE
CreationClassName=Win32_CDROMDrive
DefaultBlockSize=
Description=CD-ROM Drive
deviceid=SCSI\CDROM&VEN_HL-DT-ST&PROD_BD-RE__BH12LS35\4&15828421&amp
;0&050000
Drive=G:
DriveIntegrity=TRUE
ErrorCleared=
ErrorDescription=
ErrorMethodology=
FileSystemFlags=
FileSystemFlagsEx=21757959
Id=G:
InstallDate=
LastErrorCode=
Manufacturer=(Standard CD-ROM drives)
MaxBlockSize=
MaximumComponentLength=254
MaxMediaSize=
MediaLoaded=TRUE
MediaType=DVD Writer
MfrAssignedRevisionLevel=1.00
MinBlockSize=
Name=HL-DT-ST BD-RE  BH12LS35
NeedsCleaning=
NumberOfMediaSupported=
PNPdeviceid=SCSI\CDROM&VEN_HL-DT-ST&PROD_BD-RE__BH12LS35\4&15828421&
amp;0&050000
PowerManagementCapabilities=
PowerManagementSupported=
RevisionLevel=
SCSIBus=5
SCSILogicalUnit=0
SCSIPort=0
SCSITargetId=0
SerialNumber=
Size=39621033984
Status=OK
StatusInfo=
SystemCreationClassName=Win32_ComputerSystem
SystemName=PC
TransferRate=4363,63636363636
VolumeName=XMEN_D1
VolumeSerialNumber=8AF2C6DC

编辑

运行Get-WmiObject Win32_PhysicalMedia |选择*为我提供光驱的以下结果(DVD在驱动器中):

PSComputerName       : PC-JAY
__GENUS              : 2
__CLASS              : Win32_PhysicalMedia
__SUPERCLASS         : CIM_PhysicalMedia
__DYNASTY            : CIM_ManagedSystemElement
__RELPATH            : Win32_PhysicalMedia.Tag="\\\\.\\CDROM0"
__PROPERTY_COUNT     : 23
__DERIVATION         : {CIM_PhysicalMedia,CIM_PhysicalComponent,CIM_PhysicalElement,CIM_ManagedSystemElement}
__SERVER             : PC-JAY
__NAMESPACE          : root\cimv2
__PATH               : \\PC-JAY\root\cimv2:Win32_PhysicalMedia.Tag="\\\\.\\CDROM0"
Capacity             :
Caption              :
CleanerMedia         :
CreationClassName    :
Description          :
HotSwappable         :
InstallDate          :
Manufacturer         :
MediaDescription     :
MediaType            :
Model                :
Name                 :
OtherIdentifyingInfo :
PartNumber           :
PoweredOn            :
Removable            :
Replaceable          :
SerialNumber         :
SKU                  :
Status               :
Tag                  : \\.\CDROM0
Version              :
WriteProtectOn       :
Scope                : System.Management.ManagementScope
Path                 : \\PC-JAY\root\cimv2:Win32_PhysicalMedia.Tag="\\\\.\\CDROM0"
Options              : System.Management.ObjectGetoptions
Classpath            : \\PC-JAY\root\cimv2:Win32_PhysicalMedia
Properties           : {Capacity,Caption,CleanerMedia,CreationClassName...}
SystemProperties     : {__GENUS,__CLASS,__SUPERCLASS,__DYNASTY...}
Qualifiers           : {dynamic,Locale,provider,UUID}
Site                 :
Container            :

I want to detect if the disc is a CD,DL… etc. In
Windows GUI under Computer we can see the information according to the
icon displayed for the optical drive.

您拥有正确的命令,您寻找的信息位于“标题”字段下.

因此对于:

wmic cdrom get /format:list

在您的示例中,在Caption字段中,您可以看到它是BD-RE(蓝光可刻录)

Caption=HL-DT-ST BD-RE BH12LS35

对于你的第二个问题:

Also,I can’t find the meaning of the Availability and the
Capabilities values,if you kNow a document talking about it,it would
be great.

有关此类的描述和所有内容可在MSDN上找到:

Win32_CDROMDrive class (Windows)

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...