Add-AppxPackage -Path "C:\Downloads\MyApp.msixbundle" Install for (requires admin elevation):
Remove-AppxPackage -Package "MyAppPublisher.MyApp_1.2.3.0_x64__8wekyb3d8bbwe" For all users: powershell install msixbundle
| Cmdlet | Purpose | |--------|---------| | Add-AppxPackage | Install an MSIX/Appx package or bundle | | Get-AppxPackage | List installed packages | | Remove-AppxPackage | Uninstall a package | | Add-AppxVolume | Manage installation on external drives | Install an MSIX bundle for the current user : Add-AppxPackage -Path "C:\Downloads\MyApp
$Dependencies = @( "C:\deps\Microsoft.VCLibs.x64.14.00.appx", "C:\deps\Microsoft.UI.Xaml.2.7.appx" ) foreach ($dep in $Dependencies) Add-AppxPackage -Path $dep powershell install msixbundle
Add-AppxPackage -Path "MyApp.msixbundle" Stage the package so any new user gets it automatically:
if ($ForAllUsers) $params.Add("Register", $true)