Msixbundle !!link!! — Powershell

Add-AppxPackage -Path "C:\Apps\MyApp.msixbundle" -DependencyPath "C:\Deps\Framework.msix" Organizations without Microsoft Store access often side-load MSIX bundles. This requires enabling Developer Mode or applying a side-loading policy. PowerShell can automate both.

Uninstall by matching name:

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:

& "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\signtool.exe" sign /fd SHA256 /a /f "mycert.pfx" /p "password" "App.msixbundle" Loop through multiple bundles: Add-AppxPackage -Path "C:\Apps\MyApp

$cert = Import-Certificate -FilePath "company.cer" -CertStoreLocation "Cert:\LocalMachine\TrustedPeople" Then install the bundle:

Install with dependencies:

Enable side-loading via registry:

turbo360

Back to Top