How to install VCLibs APPX silently

Maybe already known, as a sidenote it should be installable by integrating them on the Updates page.
Let me know if it doesn't work (which exact package is it) and why is the post-setup better.

Thanks.
 
There is no need to install Microsoft.VCLibs or UWPDesktop, unless it was removed from the image.

Unlike .NET.Framework or UI.Xaml, the VCLibs package version hasn't moved past 140.00 in a long time. If your system is online, Windows Update will silently update all installed Appx packages to the latest builds.
 
There is no need to install Microsoft.VCLibs or UWPDesktop, unless it was removed from the image.

Unlike .NET.Framework or UI.Xaml, the VCLibs package version hasn't moved past 140.00 in a long time. If your system is online, Windows Update will silently update all installed Appx packages to the latest builds.
I disabled auto updates so I need to install it manually
 
Maybe already known, as a sidenote it should be installable by integrating them on the Updates page.
Let me know if it doesn't work (which exact package is it) and why is the post-setup better.

Thanks.
I didn't see it on the updates page
 
Since VCLibs is a framework package, it has no dependencies. You have two options for updating it.

1. Add the downloaded Appx package file under the Updates page.

2. Add the Appx package file during Post-Setup
  • Add package file to Post-Setup (Machine).
  • Add new command:
    Code:
    powershell Add-AppxProvisionedPackage -Online -FolderPath "C:\Windows\Setup\Files\Microsoft.VCLibs.140.00_..._x64.appx"
 
Back
Top