最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

windows - Microsoft Visual C++ 2022 X86 Minimum Runtime Error (Redlist14, specifically vc_runtimeMinimum_x86.msi) During Install

matteradmin7PV0评论

I'm encountering a persistent error while trying to install Microsoft Visual Studio. The installation fails with the following message:

Microsoft Visual C++ 2022 X86 Minimum Runtime - 14.36.32532 missing

specifically referring to redlist14.

System Info:

  • Windows 11, 64-bit
  • Visual Studio Version: Community 2022

First, I'd get the error that it can't find the specific file in the filepath for the cache, and then I tried to solve it by reinstalling/restarting my pc. I removed all redistributables and when trying to install the latest redistributable version I got the same exact error. My friend tried sending me the file from his cache and it still didn't work, with the error

[file path] is not a valid installation package for the product Microsoft Visual C++ 2022 X86 Minimum Runtime - 14.36.32532. Try to find the installation package 'vc_runtimeMinimum_x86.msi' in a folder from which you can install Microsoft Visual C++ 2022 X86 Minimum Runtime - 14.36.32532

I'm encountering a persistent error while trying to install Microsoft Visual Studio. The installation fails with the following message:

Microsoft Visual C++ 2022 X86 Minimum Runtime - 14.36.32532 missing

specifically referring to redlist14.

System Info:

  • Windows 11, 64-bit
  • Visual Studio Version: Community 2022

First, I'd get the error that it can't find the specific file in the filepath for the cache, and then I tried to solve it by reinstalling/restarting my pc. I removed all redistributables and when trying to install the latest redistributable version I got the same exact error. My friend tried sending me the file from his cache and it still didn't work, with the error

[file path] is not a valid installation package for the product Microsoft Visual C++ 2022 X86 Minimum Runtime - 14.36.32532. Try to find the installation package 'vc_runtimeMinimum_x86.msi' in a folder from which you can install Microsoft Visual C++ 2022 X86 Minimum Runtime - 14.36.32532

Share Improve this question edited Nov 16, 2024 at 14:53 James Z 12.3k10 gold badges27 silver badges47 bronze badges asked Nov 16, 2024 at 14:11 Chiril LuncasuChiril Luncasu 12 silver badges3 bronze badges 2
  • specifically referring to redlist14 – it's redist (short for redistributable), not redlist. – heap underrun Commented Nov 16, 2024 at 22:13
  • If you download and install this vc++ package manually from here then repair your VS, will the issue persist? – Dou Xu-MSFT Commented Nov 20, 2024 at 7:55
Add a comment  | 

1 Answer 1

Reset to default 0

Looks like that your computer is missing a required component of the Microsoft Visual C++ runtime library. For this issue, here are some suggestions to troubleshoot:

  1. Download, run this tool, select Uninstalling, try to uninstall following runtimes.
Microsoft Visual C++ xxxx Xxx Additional Runtime – xx.xx.xxxxx

Microsoft Visual C++ xxxx Xxx Debug Runtime – xx.xx.xxxxx

Microsoft Visual C++ xxxx Xxx Minimum Runtime – xx.xx.xxxxx
  1. Download and reinstall the Visual C++ Redistributable package from here.

  2. Run Visual Studio Installer as administrator and try to repair your VS.

  3. If not work, you can also collect setup log files generated during installation and then search detailed error messages to analyze the cause of the issue.

    (1) download Microsoft Visual Studio and .NET Framework log collection tool https://aka.ms/vscollect

    (2) run Collect.exe in an administrative command prompt The tool generates a vslogs.zip file in your %TEMP% folder, typically at C:\Users\YourName\AppData\Local\Temp\vslogs.zip.

    For more information, please refer to: Troubleshoot installation or upgrades - Visual Studio (Windows)

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far