Merge pull request #237 from dinger1986/master

added get-id
This commit is contained in:
RustDesk 2023-07-18 16:06:56 +08:00 committed by GitHub
commit 5ee677d2bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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. 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? ## 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? ## 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: On Windows you can use the following PowerShell script: