Powershell Msixbundle Here

Install with dependencies:

For enterprises using multiple drives:

Enable side-loading via registry:

try Add-AppxPackage -Path "App.msixbundle" -ErrorAction Stop catch Write-Host "Error: $_" Get-AppxLastError powershell msixbundle

Add-AppxPackage -Path "\\server\share\App.msixbundle" -TrustLevel Trusted MSIX bundles must be signed with a trusted certificate for side-loading. Use PowerShell to install the certificate into the Trusted People store: powershell msixbundle

Add-AppxPackage -Path "App.msixbundle" -TrustLevel Trusted For CI/CD pipelines, automate signing with SignTool.exe called from PowerShell: powershell msixbundle