Install - msixbundle - General Discussion - PSAppDeployToolkit Community
Add-AppxProvisionedPackage -Online -FolderPath "C:\Packages" -PackagePath "app.msixbundle"
cd C:\Path\To\MSIXBUNDLE\Package
To install an .msixbundle for the current user, open PowerShell and run: powershell Add-AppxPackage -Path "C:\Path\To\Your\File.msixbundle" Use code with caution.
If your .msixbundle file includes multiple architectures (like both x64 and ARM64 versions) and you want to ensure that the correct version for your device is installed, you can use the -AllUsers switch to install for all users on the device, or omit it to install just for the current user.
To uninstall an MSIXBUNDLE package, use the Remove-AppxPackage cmdlet:
If you have separate dependency .msix or .appx packages:
Get-ChildItem "*.msixbundle" | Add-AppxPackage
Use the Add-AppxPackage cmdlet to install the MSIXBUNDLE package: