Hi @karthik palani ,
1, What install method are you using?
2, I have down some research based on the logs your provided. For error” Failed to get client version for sending state messages. Error 0x80041010”. I found two ways to fix the issue. The following methods for your reference:
Method 1: Open a command prompt in Administrator mode and change to folder c:\windows\system32\wbem. Run the following command:
>> dir /b *.mof *.mfl | findstr /v /i uninstall > moflist.txt & for /F %s in (moflist.txt) do mofcomp %s
Method 2: Save and run the following script in a command prompt:
>> Net Stop winmgmt >> C: >> CD%SystemRoot%\System32\wbem >> RD /S /Q repository >> regsvr32 /s %SystemRoot%\system32\scecli.dll >> regsvr32 /s %SystemRoot%\system32\userenv.dll >> for /f %%s in (‘dir /b /s *.dll’) do regsvr32 /s %%s >> scrcons.exe /regserver >> unsecapp.exe /regserver >> winmgmt.exe /regserver >> wmiadap.exe /regserver >> wmiapsrv.exe /regserver >> wmiprvse.exe /regserver >> mofcomp cimwin32.mof >> mofcomp cimwin32.mfl >> mofcomp rsop.mof >> mofcomp rsop.mfl >> for /f %%s in (‘dir /b *.mof’) do mofcomp %%s >> for /f %%s in (‘dir /b *.mfl’) do mofcomp %%s
A system restart is recommended.
The related links for your reference: Fix CcmSetup failed with error code 0x80041010 in SCCM (prajwaldesai.com) CcmSetup failed with error code 0x80041010 - Jacques in IT Note: Microsoft provides third-party contact information to help you understand the problem. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
3, If the above methods cannot resolve the problem, please upload a full ccmsetup.log for our reference.
Looking forward to your reply.
Best regards, Cherry
If the response is helpful, please click "Accept Answer" and upvote it. Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.