Install on Windows
Works on Windows 11 and Windows Server 2025, 64-bit. Installing is one command.
Install
Section titled “Install”-
Open PowerShell as Administrator: right-click the Start button and choose Terminal (Administrator). Answer Yes to the permission prompt.
-
Paste this line and press Enter:
Terminal window iwr -useb https://github.com/waired-ai/waired-agent/releases/latest/download/install.ps1 | iex -
It prints a summary of what it is about to do and asks
Proceed? [Y/n]. Press Enter.A fresh interactive install also offers to change where Waired goes — press Enter to accept
C:\Program Files\Waired.
Now sign in and set up.
Read the script before running it
Section titled “Read the script before running it”Reasonable. Download it, read it, then run it:
iwr -useb https://github.com/waired-ai/waired-agent/releases/latest/download/install.ps1 -OutFile $env:TEMP\install.ps1notepad $env:TEMP\install.ps1& $env:TEMP\install.ps1This is also how you pass options — the piped one-liner cannot take them.
Skip the AI software
Section titled “Skip the AI software”Waired installs Ollama — the program that runs models — during setup, and only on computers that will run models. To make sure it is never installed (a headless or low-disk host, or you already run your own):
$env:WAIRED_NO_OLLAMA = '1'iwr -useb https://github.com/waired-ai/waired-agent/releases/latest/download/install.ps1 | iexYou can add it later from an administrator prompt with
waired runtimes install ollama.
What gets installed
Section titled “What gets installed”| Program files | C:\Program Files\Waired (changeable) |
| Background service | waired-agent, starts at boot |
| Settings and state | %ProgramData%\waired (secrets are locked down to administrators) |
| Start Menu | Waired (the icon you use day to day) |