Skip to content

Instantly share code, notes, and snippets.

View erwanclx's full-sized avatar
🏠
Working from home

erwanclx

🏠
Working from home
View GitHub Profile
@erwanclx
erwanclx / Install-RustDesk.ps1
Last active March 25, 2023 18:54 — forked from quonic/Install-RustDesk.ps1
Simple install script for latest version of RustDesk to point to your own server. Can be used in a GPO startup script.
#Region Settings
# IP address of our server
$IpAddress = "127.0.0.1"
# The public key for our server
$PublicKeyString = "12345678"
# The temporary folder where we will store and run the installer
$TempFolder = "C:\Temp\"
#EndRegion Settings