Remotely Windows
Invoke-WebRequest -Uri 'https://support.avikai.de/api/ClientDownloads/WindowsInstaller/35d85d85-a96e-4dfd-922a-62dab03f988b' -OutFile "${env:TEMP}Install-Remotely.ps1" -UseBasicParsing;Start-Process -FilePath 'powershell.exe' -ArgumentList ("-executionpolicy", "bypass", "-f", "${env:TEMP}Install-Remotely.ps1") -Verb RunAs;
Windows uninstall
Invoke-WebRequest -Uri 'https://support.avikai.de/api/ClientDownloads/WindowsInstaller/35d85d85-a96e-4dfd-922a-62dab03f988b' -OutFile "${env:TEMP}Install-Remotely.ps1" -UseBasicParsing;Start-Process -FilePath 'powershell.exe' -ArgumentList ("-executionpolicy", "bypass", "-f", "${env:TEMP}Install-Remotely.ps1", "-uninstall", "-quiet") -Verb RunAs;
Remotely Ubuntu/Debian
rm -f /tmp/Install-Remotely.sh && wget -q -O /tmp/Install-Remotely.sh https://support.avikai.de/api/ClientDownloads/UbuntuInstaller-x64/35d85d85-a96e-4dfd-922a-62dab03f988b && chmod +x /tmp/Install-Remotely.sh &&/tmp/Install-Remotely.sh
Remotely Arch/Manjaro
rm -f /tmp/Install-Remotely.sh && wget -q -O /tmp/Install-Remotely.sh https://support.avikai.de/api/ClientDownloads/ManjaroInstaller-x64/35d85d85-a96e-4dfd-922a-62dab03f988b && chmod +x /tmp/Install-Remotely.sh &&/tmp/Install-Remotely.sh