Get-WmiObject:“Provider not found” (0x80041013)

1

Before I'll tell you the problem, I'd like to mention that I'm new to WMI.

In fact, the problem is that when I execute the query "get-wmiobject -namespace root\snmp\SMIR SNMP_JVM_MANAGEMENT_MIB_jvmMemory" from PowerShell, I get this error “Provider not found” (error number "0x80041013"). But even when using other classes belonging to the namespace "root\snmp\SMIR" , the same error occurs.

I tried to google the issue and I found a Microsoft Link (https://technet.microsoft.com/en-us/library/ff406382.aspx#H27) which describes some steps I must follow, yet when I tried these steps and even when i rebuild the Wmi Repository, the error persists as well.

Please i need your help!

Thanks in advance

wmi
get-wmiobject
asked on Stack Overflow Apr 21, 2016 by sarab

1 Answer

1

Check which namespaces you have available. get-wmiobject -namespace "root" -class "__Namespace" | Select Name

Is the namespace you are looking for in this list?

Have you tried any other namespaces? Like for example.

get-wmiobject -namespace root\cimv2 -list

Try get-wmiobject -class win32_bios Do you get the same error?

answered on Stack Overflow Apr 21, 2016 by Martin

User contributions licensed under CC BY-SA 3.0