"(Standard CD-ROM drives)" or "(Standard disk drives)" appears for the CD-ROM and Disk manufacturer information in the hardware inventory for a Systems Management Server 2003 client (886088)
The information in this article applies to:
- Microsoft Systems Management Server 2003
SYMPTOMSIn a hardware inventory for a Microsoft Systems Management Server (SMS) 2003 client, the CD-ROM and Disk manufacturer information that appears is similar to the following: - (Standard CD-ROM drives)
- (Standard disk drives)
The actual manufacturer information is not included. CAUSEThis issue occurs if the Microsoft Windows Management Instrumentation (WMI) provider for the CD-ROM object or for the Disk object does not return information when you query for the manufacturer property.WORKAROUNDTo work around this issue, enable the caption property in the Sms_def.mof file. Frequently, the caption property will contain the manufacturer information. By default, the caption property for CD-ROM objects and for Disk objects is not inventoried. To enable the inventory of the caption property for CD-ROM objects and for Disk objects, follow these steps: - Click Start, point to Programs, point to Accessories, and then click Notepad.
- On the File menu, click Open. Locate and then open the Sms_def.mof file. This file is located in the Drive:\Sms\Inboxes\Clifiles.src\Hinv folder.
- Locate the following section of the Sms_def.mof file.
[ SMS_Report (TRUE),
SMS_Group_Name ("CD-ROM"),
SMS_Class_ID ("MICROSOFT|CDROM|1.0") ]
class Win32_CDROMDrive : SMS_Class_Template
{
[SMS_Report (TRUE) ]
uint16 Availability;
[SMS_Report (FALSE) ]
uint16 Capabilities[];
[SMS_Report (FALSE) ]
string CapabilityDescriptions[];
[SMS_Report (FALSE) ]
string Caption; - For the caption property of the CD-ROM object, change FALSE to TRUE. After you modify the file, this section of the Sms_def.mof file appears as follows.
[ SMS_Report (TRUE),
SMS_Group_Name ("CD-ROM"),
SMS_Class_ID ("MICROSOFT|CDROM|1.0") ]
class Win32_CDROMDrive : SMS_Class_Template
{
[SMS_Report (TRUE) ]
uint16 Availability;
[SMS_Report (FALSE) ]
uint16 Capabilities[];
[SMS_Report (FALSE) ]
string CapabilityDescriptions[];
[SMS_Report (TRUE) ]
string Caption; - Locate the following section of the Sms_def.mof file.
[ SMS_Report (TRUE),
SMS_Group_Name ("Disk"),
SMS_Class_ID ("MICROSOFT|DISK|1.0") ]
class Win32_DiskDrive : SMS_Class_Template
{
[SMS_Report (TRUE) ]
uint16 Availability;
[SMS_Report (FALSE) ]
uint32 BytesPerSector;
[SMS_Report (FALSE) ]
uint16 Capabilities[];
[SMS_Report (FALSE) ]
string CapabilityDescriptions[];
[SMS_Report (FALSE) ]
string Caption; - For the caption property of the Disk object, change FALSE to TRUE. After you modify the file, this section of the Sms_def.mof file appears as follows:
[ SMS_Report (TRUE),
SMS_Group_Name ("Disk"),
SMS_Class_ID ("MICROSOFT|DISK|1.0") ]
class Win32_DiskDrive : SMS_Class_Template
{
[SMS_Report (TRUE) ]
uint16 Availability;
[SMS_Report (FALSE) ]
uint32 BytesPerSector;
[SMS_Report (FALSE) ]
uint16 Capabilities[];
[SMS_Report (FALSE) ]
string CapabilityDescriptions[];
[SMS_Report (TRUE) ]
string Caption; - On the File menu, click Save, and then exit Notepad.
Modification Type: | Minor | Last Reviewed: | 6/13/2005 |
---|
Keywords: | kbtshoot kbsmsProvider kbSMSInventory kbsmsAdmin kbwinservperf kbMgmtServices KB886088 kbAudITPRO |
---|
|