I just tried to install the .Net Framework 4 on my Windows 7 64 bit system. The installation did not succeed - HRESULT 0xC80003F3

From the log file:

OS Version = 6.1.7600, Platform 2
OS Description = Windows 7 - x64 Enterprise Edition
CommandLine = C:\ea195f990b052fe16cb1e8\Setup.exe /x86 /x64 /ia64 /web
Using Simultaneous Download and Install mechanism
Operation: Installing
Package Name = Microsoft .NET Framework 4 Setup
Package Version = 4.0.30319
User Experience Data Collection Policy: AlwaysUploaded
Number of applicable items: 11
Exe (C:\ea195f990b052fe16cb1e8\SetupUtility.exe) succeeded.
Exe Log File: dd_SetupUtility.txt
ServiceControl operation succeeded!
ServiceControl operation succeeded!
Exe (C:\Temp\Microsoft .NET Framework 4 Setup_4.0.30319\Windows6.1-KB958488-v6001-x64.msu) failed with 0xc80003f3 - (null). Final Result: Installation failed with error code: (0xC80003F3) (Elapsed time: 0 00:09:16).

Do you have idea what I try next?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Thread that looks similar to what you describe: http --> social.answers.microsoft.com/Forums/en-US/msestart/thread/27315515-db99-428e-a424-f5d1508f7ba1

link|improve this answer
Great - thanks a lot. – Imageree Oct 18 '10 at 14:08
feedback

Here is what I did and it fixed it - Thanks to Mary.

Create a batch file with the following and run it from a command prompt.

Start File Below

regsvr32 MSXML3.dll /s
net stop wuauserv
cd /d %windir%\SoftwareDistribution
rd /s /q DataStore
net start wuauserv
regsvr32 softpub.dll
regsvr32 mssip32.dll

End File Above

Go to services and stop the Windows Update service
Go to the Windows directory (default is c:\Windows) and rename the "SoftwareDistribution" folder to "SoftwareDistribution.old"
Go to services and start the Windows Update service

From: social.answers.microsoft.com/Forums/en-US/msestart/thread/27315515-db99-428e-a424-f5d1508f7ba1

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.