Start wbemtest
select Windows -> Run
When prompted for the Command to run, enter wbemtest.
When the dialog appears, select "Connect".
You can point wbemtest to your computer:
For the local machine, change the Namespace from root\default to root\cimv2
For a different host, prefix with \\host, for example \\Server1\root\cimv2. Enter in User and Password information, as needed to access the remote system.
An example query you can use to test the connection is to list all of the windows services:
select * from Win32_Service
Note on Access/Rights
If a system is locked down very often adding the user to the local Administrator group will not allow remote WMI access.
To allow remote WMI access please see the following:
Add the user(s) in question to the Performance Monitor Users group
Under Services and Applications, bring up the properties dialog of WMI Control (or run wmimgmt.msc). In the Security tab, highlight Root/CIMV2, click Security; add Performance Monitor Users and enable the options : Enable Account and Remote Enable
Run dcomcnfg. At Component Services > Computers > My Computer, in the COM security tab of the Properties dialog click "Edit Limits" for both Access Permissions and Launch and Activation Permissions. Add Performance Monitor Users and allow remote access, remote launch, and remote activation.
Select Windows Management Instrumentation under Component Services > Computers > My Computer > DCOM Config and give Remote Launch and Remote Activation privileges to Performance Monitor Users Group.
Notes:
As an alternative to step 3 and 4, one can assign the user to the group Distributed COM Users
If the user needs access to all the namespaces, you can set the settings in #2 at the Root level, and recurse the permissions to the sub-namespaces via the Advanced window in Security
Securing a remote WMI Connection