Skip to content

Install on Windows

Who this is for
Windows 11 users
You need
An Administrator terminal
Time
5 minutes

Works on Windows 11 and Windows Server 2025, 64-bit. Installing is one command.

  1. Open PowerShell as Administrator: right-click the Start button and choose Terminal (Administrator). Answer Yes to the permission prompt.

  2. Paste this line and press Enter:

    Terminal window
    iwr -useb https://github.com/waired-ai/waired-agent/releases/latest/download/install.ps1 | iex
  3. 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.

Reasonable. Download it, read it, then run it:

Terminal window
iwr -useb https://github.com/waired-ai/waired-agent/releases/latest/download/install.ps1 -OutFile $env:TEMP\install.ps1
notepad $env:TEMP\install.ps1
& $env:TEMP\install.ps1

This is also how you pass options — the piped one-liner cannot take them.

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):

Terminal window
$env:WAIRED_NO_OLLAMA = '1'
iwr -useb https://github.com/waired-ai/waired-agent/releases/latest/download/install.ps1 | iex

You can add it later from an administrator prompt with waired runtimes install ollama.

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)