feat: PowerShell oneliner install + rolling GitHub Release
This commit is contained in:
parent
04527ae1bf
commit
4c9f0a3239
3 changed files with 55 additions and 0 deletions
19
scripts/install.ps1
Normal file
19
scripts/install.ps1
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Helios Remote - Install Script
|
||||
# Downloads and starts the helios-remote Windows client
|
||||
#
|
||||
# IMPORTANT: Windows Defender may block the executable.
|
||||
# If the download or launch fails, disable real-time protection first (run as Admin):
|
||||
# Set-MpPreference -DisableRealtimeMonitoring $true
|
||||
# Re-enable after the client is running:
|
||||
# Set-MpPreference -DisableRealtimeMonitoring $false
|
||||
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$url = "https://github.com/agent-helios/helios-remote/releases/latest/download/helios-remote-client-windows.exe"
|
||||
$dest = "$env:TEMP\helios-remote.exe"
|
||||
|
||||
Write-Host "Downloading helios-remote client..."
|
||||
Invoke-WebRequest -Uri $url -OutFile $dest -UseBasicParsing
|
||||
|
||||
Write-Host "Starting..."
|
||||
Start-Process -FilePath $dest -NoNewWindow
|
||||
Loading…
Add table
Add a link
Reference in a new issue