Forum Discussion
Error MSIX package version >= 3000.851.1712.0
The required framework package is *likely* on your system, but not currently installed for the user.
To verify if the user has the package use this command:
Get-AppXPackage -Name "Microsoft.WIndowsAppRuntime*"
To check what's available on your system, use elevation and try
Get-AppXPackage -Name "Microsoft.WindowsAppRuntime*" -allusers
You should see packages ending in 1.3 and probably 1.4 (plus maybe a .CBS), and both x86 and x64 packages for the version.
Manually, you can then just run Add-AppXPackage for the version you need added to the user.
Packages needing that runtime can trigger the automatic installation of the runtime's framework package by including a dependency in the AppXManifest file and avoid the user being bothered by this.
- NigelcpMar 06, 2024Copper Contributor
thanks I'll have a look when I get the chance. Having a Google it looks like this is a common problem with McAfee which they don't want to try and fix.
Thanks again
Nigel