@echo off REM RustDesk unattended install - double-click launcher. REM Re-launches itself as Administrator, then runs the PowerShell bootstrap. REM Downloads the .ps1 fresh from the server so it is always the current version. net session >nul 2>&1 if %errorlevel% NEQ 0 ( echo Requesting administrator rights... powershell -NoProfile -Command "Start-Process -Verb RunAs -FilePath '%~f0'" exit /b ) echo Running RustDesk unattended installer... powershell -NoProfile -ExecutionPolicy Bypass -Command "iwr https://help.apps.61ut.com/dl/install-unattended.ps1 -UseBasicParsing | iex" echo. echo ============================================================ echo Finished. Read the messages above, then press any key to echo close this window. (This does NOT stop RustDesk -- it keeps echo running in the background.) echo ============================================================ pause >nul