Blog
Powershell Msixbundle Online
try Add-AppxPackage -Path "App.msixbundle" -ErrorAction Stop catch Write-Host "Error: $_" Get-AppxLastError
$cert = Import-Certificate -FilePath "company.cer" -CertStoreLocation "Cert:\LocalMachine\TrustedPeople" Then install the bundle: powershell msixbundle
Add-AppxPackage -Path "\\server\share\App.msixbundle" -TrustLevel Trusted MSIX bundles must be signed with a trusted certificate for side-loading. Use PowerShell to install the certificate into the Trusted People store: try Add-AppxPackage -Path "App
Enable side-loading via registry:
Add-AppxPackage -Path "App.msixbundle" -TrustLevel Trusted For CI/CD pipelines, automate signing with SignTool.exe called from PowerShell: powershell msixbundle

Comentarios recientes