Msix Install Powershell Jun 2026
Whether you’re pushing via Intune, SCCM, or a custom automation script, mastering Add-AppxPackage and Add-AppxProvisionedPackage unlocks repeatable, silent MSIX deployments.
: The certificate used to sign the package must be installed in the machine's Trusted Root Certification Authorities store. You can do this via PowerShell: certutil -addstore root msix install powershell
| Action | Command | | :--- | :--- | | | Add-AppxPackage -Path "C:\path\to\app.msix" | | Install with Deps | Add-AppxPackage -Path "app.msix" -DependencyPath "C:\deps\" | | List Apps | Get-AppxPackage -Name "*AppName*" | | Remove | Get-AppxPackage "AppName" | Remove-AppxPackage | | Dev Register | Add-AppxPackage -Register "AppxManifest.xml" | Whether you’re pushing via Intune, SCCM, or a
Before attempting to install an MSIX package via PowerShell, ensure the following conditions are met: Whether you’re pushing via Intune