Task - Import a MOF

The Change Request tool has an Import MOF feature that can be used for two purposes:
The Change Request tool allows a user to incrementally add properties, elements and qualifiers one element at a time. If there are many changes to be made to a class, it may be more efficient to separately create the MOF file of the class definition containing all of the desired changes and then using the Import MOF feature of the Change Request tool.

For example, when adding four new string properties to the experimental CIM_DiagnosticSettingData class called newProperty1, newProperty2, newProperty3, and newProperty4. First, create a new CIM_DiagnosticSettingData.mof file that contains the new class definition. WARNING: The imported MOF file must have the correct syntax or the Import MOF operation will fail.

class CIM_CPUDiagnosticSettingData : CIM_DiagnosticSettingData {
...
      [Description ( "Enter Description" )]
   string newProperty1;

      [Description ( "Enter Description" )]
   string newProperty2;

      [Description ( "Enter Description" )]
   string newProperty3;

      [Description ( "Enter Description" )]
   string newProperty4;

};

To create a Change Request,




Copyright © 2016 WBEM Solutions, Inc.
All Rights Reserved.