Ñåðâèñ îáðàòíîãî çâîíêà RedConnect

Powershell Msixbundle Official

Get-ChildItem "C:\Apps" -Filter "*.msixbundle" | ForEach-Object Add-AppxPackage -Path $_.FullName

$cert = Import-Certificate -FilePath "company.cer" -CertStoreLocation "Cert:\LocalMachine\TrustedPeople" Then install the bundle:

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

Get-AppxLastError Common error handling: