Skip to content

zRover Retriever v1.0.1.0

Latest

Choose a tag to compare

@github-actions github-actions released this 24 Apr 19:27
· 3 commits to master since this release

Installation

The package is signed with a self-signed certificate. Run the following once as admin in PowerShell to trust the cert and install:

$cerUrl  = "https://github.com/arcadiogarcia/zRover/releases/download/v1.0.1.0/zRover.Retriever_1.0.1.0_x64.cer"
$msixUrl = "https://github.com/arcadiogarcia/zRover/releases/download/v1.0.1.0/zRover.Retriever_1.0.1.0_x64.msix"

# 1. Trust the signing certificate (one-time, requires admin)
$cer = "$env:TEMP\zRover.cer"
Invoke-WebRequest $cerUrl -OutFile $cer
Import-Certificate -FilePath $cer -CertStoreLocation Cert:\LocalMachine\TrustedPeople
Remove-Item $cer

# 2. Install (or update) the MSIX for all users
$msix = "$env:TEMP\zRover.Retriever.msix"
Invoke-WebRequest $msixUrl -OutFile $msix
Add-AppxProvisionedPackage -Online -PackagePath $msix -SkipLicense
Remove-Item $msix

Updating: Run only step 2 for subsequent releases — the certificate only needs to be trusted once per machine. Add-AppxProvisionedPackage installs the app for all users on the machine.

Full Changelog: v1.0.0.1...v1.0.1.0