Windows 8 .NET Framework 3.5 Error Hlp plz

arafinshaon

New Member
Joined
Dec 4, 2011
Messages
1
I am getting this error while installing .NET Framework 3.5 "0x800736cc - a component's file does not match the verification information present in the component manifest" Plz kindly hlp me to fix this out.
 


Solution
The error code "0x800736cc - a component's file does not match the verification information present in the component manifest" that you are encountering while trying to install .NET Framework 3.5 on your system usually indicates that there might be issues with the system component store or corruption within the Windows component store. Here are some steps you can follow to try and resolve this issue:

Method 1: Use the Windows DISM Tool​

You can try using the Deployment Image Servicing and Management (DISM) tool to repair the Windows component store. Here's how you can do it:
  1. Open Command Prompt as an administrator.
  2. Run the following command:
    Code:
     DISM /Online /Cleanup-Image /ScanHealth
  3. Wait for the process to...
The error code "0x800736cc - a component's file does not match the verification information present in the component manifest" that you are encountering while trying to install .NET Framework 3.5 on your system usually indicates that there might be issues with the system component store or corruption within the Windows component store. Here are some steps you can follow to try and resolve this issue:

Method 1: Use the Windows DISM Tool​

You can try using the Deployment Image Servicing and Management (DISM) tool to repair the Windows component store. Here's how you can do it:
  1. Open Command Prompt as an administrator.
  2. Run the following command:
    Code:
     DISM /Online /Cleanup-Image /ScanHealth
  3. Wait for the process to complete.
  4. After the scan, run the following command to repair any issues found:
    Code:
     DISM /Online /Cleanup-Image /RestoreHealth
  5. Reboot your system and then try reinstalling .NET Framework 3.5.

    Method 2: Use the System File Checker (SFC) Tool​

    You can also run the System File Checker tool to scan and repair corrupted system files. Here's how:
  6. Open Command Prompt as an administrator.
  7. Run the following command:
    Code:
     sfc /scannow
  8. Wait for the scan to complete and follow any on-screen instructions if prompted.
  9. Reboot your system and try installing .NET Framework 3.5 again.

    Method 3: Check Windows Update​

    Make sure that your Windows system is up to date with the latest updates. Sometimes, missing updates can cause issues with installing certain components like .NET Framework.

    Method 4: Use the .NET Framework Repair Tool​

    Microsoft provides a .NET Framework Repair Tool that can help in fixing issues with the .NET Framework installations. You can download and run this tool to see if it resolves the problem. Try these methods and see if they help in resolving the error you are facing. If the issue persists, feel free to provide more details for further assistance.
 


Solution
Back
Top