mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-06-22 02:31:33 +02:00
Update _index.en.md
This commit is contained in:
parent
8eb64e1941
commit
3acc767ff2
@ -226,3 +226,31 @@ If the script installed Nginx then remove using:
|
|||||||
```sh
|
```sh
|
||||||
sudo apt remove nginx
|
sudo apt remove nginx
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## How can I remove devices from the device list in the web console?
|
||||||
|
Disable and then delete will now be available.
|
||||||
|
|
||||||
|
## How Can I update RustDesk Wth Powershell?
|
||||||
|
|
||||||
|
```ps
|
||||||
|
$ErrorActionPreference= 'silentlycontinue'
|
||||||
|
|
||||||
|
$rdver = ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RustDesk\").Version)
|
||||||
|
|
||||||
|
if($rdver -eq "1.2.2")
|
||||||
|
{
|
||||||
|
write-output "RustDesk $rdver is the newest version"
|
||||||
|
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
If (!(Test-Path c:\Temp)) {
|
||||||
|
New-Item -ItemType Directory -Force -Path c:\Temp > null
|
||||||
|
}
|
||||||
|
|
||||||
|
cd c:\Temp
|
||||||
|
|
||||||
|
powershell Invoke-WebRequest "https://github.com/rustdesk/rustdesk/releases/download/1.2.2/rustdesk-1.2.2-x86_64.exe" -Outfile "rustdesk.exe"
|
||||||
|
Start-Process .\rustdesk.exe --silent-install -wait
|
||||||
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user