Install Msixbundle Powershell ~upd~ Here

Add-AppxPackage -Path "app.msixbundle" -ForceApplicationShutdown Requires admin rights and is useful for enterprise deployment:

if ($Force) $params.ForceApplicationShutdown = $true install msixbundle powershell

try if ($AllUsers) Add-AppxProvisionedPackage -Online -PackagePath $BundlePath -SkipLicense Write-Host "Installed for all users." -ForegroundColor Green else $params = @ Path = $BundlePath ErrorAction = "Stop" Add-AppxPackage -Path "app