# Define URL and temp path for the installer $exeUrl = "https://rust.flypelican.com.au/fp-rustdesk.exe" $exePath = "$env:TEMP\fp-rustdesk.exe" # Download the installer Invoke-WebRequest -Uri $exeUrl -OutFile $exePath # Run process Start-Process -FilePath $exePath -ArgumentList "--silent-install" -WindowStyle Hidden