@echo off
title QR Informatique - Installation Rustdesk
net session >nul 2>&1
if %errorLevel% neq 0 (
  echo Lancement en administrateur...
  powershell -Command "Start-Process '%~f0' -Verb RunAs"
  exit /b
)
cd /d %TEMP%
curl -L "https://remote.qrinformatique.be/install/windows.ps1?kind=particulier&company=&name=" -o QR-Remote-Install.ps1
powershell -NoProfile -ExecutionPolicy Bypass -File QR-Remote-Install.ps1
exit
