# ORRA Systems Trust Installer for Windows # Installs the ORRA Systems Root CA into the Current User trusted root store. $ErrorActionPreference = "Stop" $CertUrl = "http://portal.orra.cloud/trust/root-ca.crt" $Out = "$env:TEMP\orra-systems-root-ca.crt" Invoke-WebRequest -Uri $CertUrl -OutFile $Out Import-Certificate -FilePath $Out -CertStoreLocation Cert:\CurrentUser\Root Write-Host "ORRA Systems Root CA installed for current user."