Inactive Configuration Manager Agents
MSI: Action 17:10:36: Rollback. Rolling back action: ccmsetup 2012-12-12 17:10:36 2192 (0x0890)
MSI: Warning 25101. Setup was unable to delete WMI namespace ccm\dcm The error code is 80041002 ccmsetup 2012-12-12 17:10:37 2192 (0x0890)
File C:\WINDOWS\ccmsetup\{F5EAB9A8-E852-429F-92BC-BB82712ACA9B}\client.msi installation failed. Error text: ExitCode: 1603 Action: CcmCreateWmiNamespaces. ErrorMessages: Setup was unable to create the WMI namespace CCM The error code is 80041002 ccmsetup 2012-12-12 17:12:31 2192 (0x0890)
This indicates that there is something wrong with WMI on the client. I tried to find a way to repair WMI on Windows XP and found a solution where you should delete %windir%\system32\wbem\repository and restarting the "Windows Management Instrumentation" service. DO NOT perform this step, it will make the computer very unstable. Instead run the following commands in a Command Prompt to rebuild the WMI components.
net stop /y winmgmt
FOR /f %s in ('dir /b *.mof *.mfl') do mofcomp %s
net start winmgmt
Fett Nice :)