Hi Guys,
I was having the same issue as below from CCMSetup.log
-----*****-----
Installing file 'C:\WINDOWS\ccmsetup\vcredist_x86.exe' with options '/q /norestart /c:"msiexec /i vc_red.msi /qn REBOOT=ReallySuppress" /msioptions "REBOOT=ReallySuppress"'.
File 'C:\WINDOWS\ccmsetup\vcredist_x86.exe' returned failure exit code 1603. Fail the installation.
InstallFromManifest failed 0x80070643
Params to send FSP message '5.0.7958.1000 Deployment Error 0x80070643. Pre-req: vcredist_x86.exe'
State message with TopicType 800 and TopicId {915EE94C-6625-42F7-99BE-DA6D39550C23} has been sent to the FSP
Deleted file C:\WINDOWS\ccmsetup\ccmsetup.xml
CcmSetup failed with error code 0x80070643
-----*****-----
Solution:
1. Used following script to fix WMI.
@echo off
winmgmt /resetrepository
sc config winmgmt start= disabled
net stop winmgmt /y
%systemdrive%
cd %windir%\system32\wbem
For /f %%s in ('dir /b *.dll') do regsvr32 /s %%s
wmiprvse /regserver
winmgmt /regserver
net start winmgmt
for /f %%s in ('dir /b *.mof *.mfl') do mofcomp %%s
exit
2. Also used CCMClean.exe to clean any left overs or un-necessary links and files.
3. Installed SCCM Client again and it installed smoothly.
Thanks