SCCM client hang on W2k.mof
Hi,
We got the below error when we tried to repair SCCM client in one of our win 2k3 server.
"Setup was unable to compile the file SMSCLientproviders_w2k.mof.The error code is 8004100E"
Please provide us the solution for the same.
Regards,
Hakim.BHakim
November 22nd, 2010 3:31am
This could be related to a corrupt WMI repository. Can you run the WMI diagnosis tool (http://www.microsoft.com/downloads/en/details.aspx?familyid=d7ba3cd6-18d1-4d05-b11e-4c64192ae97d&displaylang=en).
Free Windows Admin Tool Kit Click here and download it now
November 22nd, 2010 3:43am
Hi,
1. Navigate to the following folder and run the following commands:
C:\Windows\System32\Wbem
for /f %s in ('dir /b *.mof *.mfl') do mofcomp %s
for /f %s in ('dir /b /s *.dll') do regsvr32 /s %s
--------------- First command will recompile all the mof fils under the WBEM
folder
--------------- Second command will register all the .dlls under the WBEM folder
2. Verified the WMI permission under DCOMCNFG
------------------------------------------
Default WMI DCOM Settings:
------------------------------------------
Modifying the default WMI DCOM Settings can also cause a wide range of problems.
Once again, you can use DCOMCNFG to view these settings.
Windows XP
a. Start -> Run -> Open: DCOMCNFG
b. Expand Component Services node
c. Expand Computers node
d. Expand My Computer node
e. Expand DCOM Config node
f. Right click Windows Management [and] Instrumentation
g. Select Properties
Here are some of the settings you should verify.
Authentication Level: Default
Launch Permissions: Everyone (XP/2003)
Access Permissions: Use Default
----------------------------------
Default DCOM Settings:
----------------------------------
a. Start -> Run -> Open: DCOMCNFG
b. Expand Component Services node
c. Expand Computers node
d. Right click My Computer node
e. Select Properties
f. Select Default COM Security tab
Under "Default Launch Permissions" you should ensure that at least INTERACTIVE, SYSTEM, and Administrators have Allow Launch".The "Default Access Permissions" should only list the following accounts.
XP: SYSTEM
2003: SELF, SYSTEM
If the above Access Permissions settings have been modified you need to make sure that at least INTERACTIVE, SYSTEM, and Administrators have been explicitly granted"Access Permission".
Reboot the machine and Re-install client again.Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
November 23rd, 2010 3:44am