Powershell: Msixbundle
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.
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" -Name "AllowAllTrustedApps" -Value 1 Then install a trusted bundle: powershell msixbundle
Uninstall by matching name: