- 2 minutes to read

Troubleshooting System.Management.ManagementException: Invalid Namespace

The System.Management.ManagementException: Invalid Namespace error can be caused by incompatibilities in Windows Server versions and features installed on the target server. Please read this user guide if you see 'Invalid Class' in the diagnostics files.

The Nodinite Windows Server Monitoring Agent uses WMI queries, and the Namespaces must exist on the target server. This also means the WMI repository cannot be broken. You may have to repair a broken WMI repository.

graph LR subgraph "Server A" roAgent1(fal:fa-monitor-waveform Nodinite Windows Server Agent) end subgraph "Server B" roAgent1 <---> | INVALID NAMESPACE | roWMI("WMI Query") end

🔌 Ensure the Namespace exists

  1. Use a Remote Desktop session and connect with the target Windows server. NOTE: This may be a remote Windows Server.

  2. Click on the Start menu item and type 'WBEMTEST'.
    WBEMTEST.exe on start menu
    Find WBEMTEST in the Windows start menu.

  3. Next, launch the program.
    WBEMTEST Application
    Here's an example of the look of the WBEMTEST application.

  4. Click the 'Connect' button.

  5. Enter 'root\WebAdministration' in the 'Namespace' text box.
    Connect with Namespace
    Enter the namespace to connect with.

🎉 If there are no error messages. The Namespace exists on the target server.
💥 If the namespace does not exist you should be presented with an error message:
Invalid Namespace
Here's an example of a missing namespace.
6. If the namespace does not exist, please retry steps 4 and 5, using 'root\MicrosoftIISv2' this time.

As an alternative to WBEMTEST, you can use Powershell.

Get-WmiObject -Namespace "root" -Class "__Namespace" | Where-Object { $_.Name -eq "WebAdministration" }
  • If the namespace is missing, IIS WMI components might not be installed.

ℹ️ Report these findings to the Nodinite Support


Possible Causes and Solutions

  1. IIS Management Scripts and Tools are NOT installed.
  • The WebAdministration namespace is part of the IIS Management Scripts and Tools feature.

  • Check if it's installed by running:

    Get-WindowsFeature Web-Scripting-Tools
    
  • If it's missing, install it with:

    Install-WindowsFeature Web-Scripting-Tools
    
  1. WMI Repository Corruption
  • Sometimes, the WMI repository gets corrupted, causing namespaces to disappear.

  • Try rebuilding WMI:

    winmgmt /resetrepository
    
  • If that doesn’t work, try:

    winmgmt /salvagerepository
    
  1. IIS WMI Provider Not Registered
  • The WMI provider for IIS might not be properly registered. You can re-register it by running:

    mofcomp %windir%\system32\inetsrv\iiswmi.mof
    

Next Steps

  1. Confirm IIS is fully installed using:

    Get-WindowsFeature *Web*
    
  2. Ensure IIS Management Scripts and Tools (Web-Scripting-Tools) is installed.

  3. Re-register the WMI provider (mofcomp command above).

  4. If all else fails, try resetting WMI.