Install Msixbundle Using Powershell Guide

Add-AppxPackage -Path "C:\Deploy\MyApp.msixbundle" -DependencyPath "C:\Dependencies\*.msix" Or force install ignoring non-critical dependency errors (use cautiously):

Start-Process -FilePath "powershell.exe" -ArgumentList "-Command Add-AppxPackage -Path 'C:\Deploy\MyApp.msixbundle' -ErrorAction Stop" -WindowStyle Hidden -Wait To install an MSIX bundle on a remote machine: install msixbundle using powershell

Invoke-Command -ComputerName "PC-01" -ScriptBlock Add-AppxPackage -Path "\\server\share\MyApp.msixbundle" Add-AppxPackage -Path "C:\Deploy\MyApp