Windows

Invoke-WebRequest -Uri 'https://remote.boilervision.com/api/ClientDownloads/WindowsInstaller/7c7d9cee-442f-4574-addc-c22f41bd4d11' -OutFile "${env:TEMP}\Install-Remotely.ps1" -UseBasicParsing;Start-Process -FilePath 'powershell.exe' -ArgumentList ("-executionpolicy", "bypass", "-f", "${env:TEMP}\Install-Remotely.ps1") -Verb RunAs;



Ubuntu

sudo rm -f /tmp/Install-Remotely.sh && sudo wget -q -O /tmp/Install-Remotely.sh https://remote.boilervision.com/api/ClientDownloads/UbuntuInstaller-x64/7c7d9cee-442f-4574-addc-c22f41bd4d11 && sudo chmod +x /tmp/Install-Remotely.sh && sudo /tmp/Install-Remotely.sh