Error Invalid class [0x80041010] while launching SQL Server Configuration Manager

kumkumsharma

Administrator
Staff member
If you are getting below error while accessing the SQL Server Configuration Manager then you can follow below steps to resolve this issue.

Code:
Cannot connect to WMI provider. You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 and later servers with SQL Server Configuration Manager. Invalid class [0x80041010]
  • Open command prompt and run it as an administrator.
  • Now navigate to below path:
Code:
C:\ProgramFiles(x86)\MicrosoftSQLServer\100\Shared\
  • After navigation run below command:
Code:
mofcomp sqlmgmproviderxpsp2up.mof
  • You will able to show below output:
Code:
C:\Program Files (x86)\Microsoft SQL Server\100\Shared>mofcomp sqlmgmproviderxpsp2up.mof
Microsoft (R) MOF Compiler Version 6.1.7600.16385
Copyright (c) Microsoft Corp. 1997-2006. All rights reserved.
Parsing MOF file: sqlmgmproviderxpsp2up.mof
MOF file has been successfully parsed
Storing data in the repository...
Done!
This will show your SQL Server Configuration Manager is working properly.
 
Top