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.
🔌 Ensure the Namespace exists
Use a Remote Desktop session and connect with the target Windows server. NOTE: This may be a remote Windows Server.
Click on the Start menu item and type '
WBEMTEST
'.
Find WBEMTEST in the Windows start menu.Next, launch the program.
Here's an example of the look of the WBEMTEST application.Click the 'Connect' button.
Enter '
root\WebAdministration
' in the 'Namespace' text box.
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:
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
- 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
- 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
- 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
Confirm IIS is fully installed using:
Get-WindowsFeature *Web*
Ensure IIS Management Scripts and Tools (
Web-Scripting-Tools
) is installed.Re-register the WMI provider (
mofcomp
command above).If all else fails, try resetting WMI.