How To Change the Default Namespace in Windows Management Instrumentation CIM Studio (252446)



The information in this article applies to:

  • Microsoft Platform Software Development Kit (SDK) 1.0

This article was previously published under Q252446

SUMMARY

The Windows Management Instrumentation (WMI) Common Information Model (CIM) Studio connects to the \Root\CIMV2 namespace by default. This article demonstrates how to change the default namespace.

MORE INFORMATION

You can change this to a different namespace by modifying CIM Studio's .htm files.

NOTE: Please make a backup copy of any .htm files before you make any modifications.

In the studio.htm file, line 116 is as follows:
   top.frames("ClassnavFrame").ClassNavigator.OnReadySignal
To set the default namespace to \Root\default, change the code to this:
    top.frames("ClassnavFrame").ClassNavigator.Namespace="root\default"
    top.frames("ClassnavFrame").ClassNavigator.OnReadySignal


WMI CIM Studio consists of the following four .htm files:
  • studio.htm
  • studiobanner.htm
  • classnav.htm
  • editor.htm
These files use the WMI ActiveX controls to provide access to WMI. The Platform SDK installs these files to the \Program Files\Microsoft Platform SDK\Bin\WMI folder.

The default namespace of \Root\CIMV2 is currently hard-coded in the WMI Namespace Picker control. In order to override this value, you must explicitly set the Namespace property of the WMI Namespace Picker control.

Modification Type:MinorLast Reviewed:7/11/2005
Keywords:kbhowto KB252446