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:
- Open Command Prompt as an administrator.
- Run the following command:
Code:
DISM /Online /Cleanup-Image /ScanHealth
- Wait for the process to...