Use the Add-AppxPackage cmdlet to install the MSIXBUNDLE package.
If you need the application to be available for every user account on the machine, use the Add-AppxProvisionedPackage cmdlet. This requires a restart or a new user login to trigger the installation for existing profiles. powershell msixbundle install powershell
try Write-Host "Installing bundle..." -ForegroundColor Cyan $result = Add-AppxPackage -Path $bundlePath -ErrorAction Stop -Verbose Use the Add-AppxPackage cmdlet to install the MSIXBUNDLE
The primary cmdlet used for installing these packages is Add-AppxPackage . msixbundle install powershell
# Launch app (optional) # Start-Process "shell:AppsFolder\$($installed.PackageFamilyName)!App"
# Full deployment script $bundlePath = "C:\Deployments\MyApp.msixbundle"