install of microsoft-windows-terminal was NOT successful because lack of Microsoft.VCLibs.140.00.UWPDesktop
Problem:
When install Microsoft Windows Terminal (or other software), the installation fails because VCLibs cannot be found.
It is becasue C++ Runtime framework packages for Desktop Bridge is missing. It is because the Windows 10 is LTSC version which Microsoft Store is not present, and Microsoft Windows Terminal is a Windows Store Apps.
Solution:
Install VCLib manually.
- Download VCLib
- Open PowerShell with Administrator rights
- Run below command
- PS C:\Windows\system32> Add-AppxPackage C:\Users\UserName\Downloads\Microsoft.VCLibs.x86.14.00.Desktop.appx
- PS C:\Windows\system32> Add-AppxPackage C:\Users\UserName\Downloads\Microsoft.VCLibs.x64.14.00.Desktop.appx
Reference:
Comments