Hanys Hanys
Hanys Hanys

Reputation: 13

Install specific version of VCLibs debug (Microsoft.VCLibs.140.00.Debug_14.0.30704.0_x64__8wekyb3d8bbwe)

I need specific version of VCLibs DEBUG: Microsoft.VCLibs.140.00.Debug_14.0.30704.0_x64__8wekyb3d8bbwe

I checked many forums and instructions like here: https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/libraries/c-runtime-packages-desktop-bridge

I install this Universal Windows Tools but it has only ARM64 and wrong version: 14.0.33519.0 (C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\Appx\Debug\ARM64) enter image description here

I didn't have option to install "Universal Windows Platform development" in Workloads, some of the forums points this step but probably all of them are out of date.

does somebody know where can I found this version of VCLibs debug: Microsoft.VCLibs.140.00.Debug_14.0.30704.0_x64__8wekyb3d8bbwe or how can I create it on my own hand?

Regards, Hanys

Upvotes: 1

Views: 1182

Answers (2)

Marek Biolik
Marek Biolik

Reputation: 18

  1. Remove old version (whole folder): C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs
  2. Install specific version of MVS -> 2022 LTSC 17.2.0
  3. In configuration select: ""C++ Universal Windows Platform.."
  4. in C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\Appx\Debug\x64, you should have desired version of Microsoft.VCLibs.140.00.Debug

the second option is:

  1. Remove old version (whole folder): C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs
  2. Install specific version of MVS -> 2022 LTSC 17.2.0
  3. In configuration don't select any extra packages which you don't need
  4. After finish installation export your configuration export configuration
  5. Open configuration in text editor and add this package: "Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging", "Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs"
  6. Open MVS Installer again and import configuration import configuration
  7. Install
  8. in C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\Appx\Debug\x64, you should have desired version of Microsoft.VCLibs.140.00.Debug

Upvotes: 0

Joe Finney
Joe Finney

Reputation: 1

I had the same issue on my ARM PC, here is how I solved it.

  1. Open the Visual Studio Installer
  2. Click Modify on the version you are using
  3. Go to the Individual Components tab
  4. Search for "Universal"
  5. Check the box for "C++ Universal Windows Platform support for v143 build tools (ARM64/ARM64EC)"
  6. Click Modify to begin installing

Upvotes: 0

Related Questions