14 lines
503 B
Batchfile
14 lines
503 B
Batchfile
@echo off
|
|
echo Lade RustDesk herunter...
|
|
powershell -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri 'https://me-files.vmd55888.de/me-rustdesk-host.exe' -OutFile 'C:\TMP\me-rustdesk-host.exe' -UseBasicParsing"
|
|
|
|
:: Kurze Pause, damit die Datei sicher geschrieben wurde
|
|
timeout /t 2 /nobreak >nul
|
|
|
|
echo Starte Silent-Installation...
|
|
C:\TMP\me-rustdesk-host.exe --silent-install
|
|
|
|
echo Entferne Desktop-Verknuepfung...
|
|
del "C:\Users\Public\Desktop\RustDesk.lnk" /Q /F
|
|
|
|
echo Fertig! |