diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 538871e..cb40e04 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -103,7 +103,13 @@ A simple way to check is using telnet. To test in the Linux terminal type `telne Your mail server may not be using port 25. Please make sure you are using the correct ports. ## How can I get RustDesk IDs from agents on my network or using an RMM type system? -Run the following command elevated to SYSTEM: `"C:\Program Files\RustDesk\RustDesk.exe" --get-id` +On Windows you can use the following PowerShell script: +``` +$ErrorActionPreference= 'silentlycontinue' + +$rustdesk_id = ("'C:\Program Files\RustDesk\rustdesk.exe' --get-id" | get-clipboard) +Write-Output $rustdesk_id +``` ## How can I set a persistent password on an agent on my network or using an RMM type system? On Windows you can use the following PowerShell script: