Write-Host "Installing MSIX for all users from: $MsixPath" -ForegroundColor Cyan
<# .FILE: Deploy-MsixAllUsers.ps1 .DESCRIPTION: Installs MSIX package for all users with dependency and cert management #> param( [string]$MsixUrl = "https://internal.cdn/MyApp.msix", [string]$CertificateUrl = "https://internal.cdn/MyApp.cer", [string[]]$DependencyUrls = @() ) install msix powershell all users
Add-AppxPackage -Path "\\server\share\MyApp.msix" -Scope Machine -ErrorAction Stop Write-Host "Installing MSIX for all users from: $MsixPath"