By following these steps, you can successfully install MSIXBUNDLE packages using PowerShell.

Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like " YourApp "

Remove existing version first

Some bundles require framework packages (like .NET or VCLibs) to be installed first. You can include these in the command: powershell

Add-AppxPackage -Path "app.msixbundle" -StageOnly Register-ActivationOnlyPackage -Path "app.msixbundle"

Add-AppxPackage -Path "app.msixbundle" -Volume "C:"

)

Remove-AppxPackage -Package "PackageFullName"