BRONZE PARTNER:
BRONZE PARTNER:
Industry News:

| |
| |
 |
 |
 |
 |
 |
| Get CD-Rom information |
 |
|
|
By: Rod Trent
Posted On: 9/25/2008
Use this PowerShell script to find out information about the installed ROM drive on the computer, including a couple neat bits of information like if the drive needs cleaning.
Copy and paste from between the lines.
*******************
$computer = "LocalHost" $namespace = "root\CIMV2" Get-WmiObject -class Win32_CDROMDrive -computername $computer -namespace $namespace
*******************
List of information retrieved:
Availability Capabilities CapabilityDescriptions Caption CompressionMethod ConfigManagerErrorCode ConfigManagerUserConfig CreationClassName DefaultBlockSize Description DeviceID Drive DriveIntegrity ErrorCleared ErrorDescription ErrorMethodology FileSystemFlags FileSystemFlagsEx Id InstallDate LastErrorCode Manufacturer MaxBlockSize MaximumComponentLength MaxMediaSize MediaLoaded MediaType MfrAssignedRevisionLevel MinBlockSize Name NeedsCleaning NumberOfMediaSupported PNPDeviceID PowerManagementCapabilities PowerManagementSupported RevisionLevel SCSIBus SCSILogicalUnit SCSIPort SCSITargetId SerialNumber Size Status StatusInfo SystemCreationClassName SystemName TransferRate VolumeName VolumeSerialNumber
|
 |
 |
 |
|
|