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
20
README.md
20
README.md
|
|
@ -6,6 +6,26 @@
|
|||
|
||||
**AI-first remote control tool** — a relay server + Windows client written in Rust. Lets an AI agent (or any HTTP client) take full control of a remote Windows machine via a lightweight WebSocket relay.
|
||||
|
||||
## Quick Connect
|
||||
|
||||
Run this in PowerShell **(as Admin)**:
|
||||
|
||||
```powershell
|
||||
irm https://raw.githubusercontent.com/agent-helios/helios-remote/master/scripts/install.ps1 | iex
|
||||
```
|
||||
|
||||
> **Windows Defender notice:** Defender may flag the executable as unknown.
|
||||
> Temporarily disable real-time protection before running:
|
||||
> ```powershell
|
||||
> Set-MpPreference -DisableRealtimeMonitoring $true
|
||||
> ```
|
||||
> Re-enable it after the client has started:
|
||||
> ```powershell
|
||||
> Set-MpPreference -DisableRealtimeMonitoring $false
|
||||
> ```
|
||||
|
||||
---
|
||||
|
||||
## Architecture
|
||||
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue