Browse Source

Create clientinstall.ps1

pull/1/head
dinger1986 1 year ago
committed by GitHub
parent
commit
dd2d80ac41
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      clientinstall.ps1

16
clientinstall.ps1

@ -0,0 +1,16 @@
$ErrorActionPreference= 'silentlycontinue'
If (!(test-path "c:\temp")) {
New-Item -ItemType Directory -Force -Path "c:\temp"
}
cd c:\temp
If (!(test-path "C:\Program Files\Rustdesk\RustDesk.exe")) {
cd c:\temp
Invoke-WebRequest https://github.com/rustdesk/rustdesk/releases/download/1.1.9/rustdesk-1.1.9-windows_x64.zip -Outfile rustdesk.zip
expand-archive rustdesk.zip
cd rustdesk
start .\rustdesk-1.1.9-putes.exe --silent-install
}
Loading…
Cancel
Save