Reputation: 11
I'm getting below error on windows 10 machine after taking windows update version 1909.
MSI (c) (4C:DC) [12:25:25:765]: Connected to service for CA interface. SFXCA: Failed to create new CA process via RUNDLL32. Error code: 5 CustomAction FindOfficeComponents returned actual error code 1603 but will be translated to success due to continue marking Action ended 12:25:26: FindOfficeComponents. Return value 1.
Upvotes: 0
Views: 1465
Reputation: 42136
Google Check: Chris Painter's blog. Culprit: DTF custom actions.
"
It seems this kind of error is triggered by DTF custom actions executed as immediate when the setup is launched from "Apps and Features" manager
".
Solution: Are you uninstalling or installing? If you are uninstalling, try the old ARP applet
(Add / Remove Programs
).
Hold Windows Key => Tap R => Type: appwiz.cpl => Press: ENTER in order to open the Add / Remove Programs Applet
.
Deployment Tools Foundation: DTF
=>
Deployment Tools Foundation
- included with the WiX toolset. A .NET wrapper for the Win32 MSI API with value added features: sample 1, sample 2 (using Microsoft.Deployment.WindowsInstaller;
).
Makes custom actions possible with emulated code (.NET). Richer API, but more dependencies (.NET Framework) and layers to depend upon - some problems invariably result.
Quick Checks:
- Google exact error message
- Try to reboot and then try again (sorts pending reboots & locks).
- Temporarily disable anti-virus / security software before deployment (locking & blocking).
- Make sure you run with admin rights (permissions).
General Purpose Deployment Debugging:
And more in the the "Deployment mnemonic" section here and down the page.
Upvotes: 0