I have an internal WPF application to be installed in client's PC. Usually I start with the installation of these three dependency files
Microsoft.NET.CoreFramework.Debug.2.2.appx
Microsoft.NET.CoreRuntime.2.2.appx
Microsoft.VCLibs.x64.Debug.14.00.appx
Then, I need to install the appxbundle
file to complete the installation.
But this client's PC don't have app installer and I was told to run PowerShell as administrator for installation. The command I used was
Add-AppxPackage -Path "file location/file"
I managed to install the dependency files but I couldn't install the appxbundle file. The error appeared was as below
Deployment failed with HRESULT: 0x80073CFD, A Prerequisite for an install could not be satisfied
How should I go about solving this error? For it only happens when the installation is done using PowerShell.
User contributions licensed under CC BY-SA 3.0