Add-AppxVolume -Path "D:\WindowsApps" Get-AppxVolume Move-AppxPackage -Name "MyApp" -Volume D:\WindowsApps # Deploy MSIX bundle to 20 lab PCs $computers = Get-Content "computers.txt" $bundlePath = "\\nas\deploy\App.msixbundle" foreach ($pc in $computers) Invoke-Command -ComputerName $pc -ScriptBlock Add-AppxPackage -Path $using:bundlePath -TrustLevel Trusted

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" -Name "AllowAllTrustedApps" -Value 1 Then install a trusted bundle:

Get-AppxLastError Common error handling: