From f6d8677dbcd98a79d8b835c11c0cc7fcca2f3f3e Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Tue, 18 Jul 2023 08:20:09 +0100 Subject: [PATCH 1/2] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 538871e..435b564 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -103,7 +103,12 @@ 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' + +"'C:\Program Files\RustDesk\rustdesk.exe' --get-id" | get-clipboard +``` ## 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: From 9b63d8cdefd2d50ca7118fccce31044021e33e1b Mon Sep 17 00:00:00 2001 From: dinger1986 Date: Tue, 18 Jul 2023 08:23:22 +0100 Subject: [PATCH 2/2] Update _index.en.md --- content/self-host/pro/FAQ/_index.en.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/self-host/pro/FAQ/_index.en.md b/content/self-host/pro/FAQ/_index.en.md index 435b564..cb40e04 100644 --- a/content/self-host/pro/FAQ/_index.en.md +++ b/content/self-host/pro/FAQ/_index.en.md @@ -107,7 +107,8 @@ On Windows you can use the following PowerShell script: ``` $ErrorActionPreference= 'silentlycontinue' -"'C:\Program Files\RustDesk\rustdesk.exe' --get-id" | get-clipboard +$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?