To 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.