Install | Msix Powershell All Users
Open PowerShell as Administrator and use:
Add-AppxProvisionedPackage -Online -FolderPath "C:\Path\To\YourPackage.msix" -SkipLicense
Parameter Breakdown:
Remove-AppxPackage -Package "FullPackageName" -AllUsers -PreserveRoamableApplicationData
You cannot provision a package if it is already installed for a specific user. Fix: Remove it first. install msix powershell all users
# Remove for current user
Get-AppxPackage -Name "AppName" | Remove-AppxPackage
if (Test-Path $certPath)
Import-Certificate -FilePath $certPath -CertStoreLocation Cert:\LocalMachine\TrustedPeople
You cannot provision a package if it is