Install on Windows¶
The Connector supports Windows 10 and Windows 11 on both amd64 and arm64.
Option 1: PowerShell installer (recommended)¶
Open PowerShell and run:
The script picks the right build for your CPU (amd64 or arm64), downloads it to %LOCALAPPDATA%\Programs\kuali\kuali.exe, and adds that folder to your user PATH. No admin rights required.
Open a new PowerShell window when it finishes so the updated PATH takes effect.
Install a specific version (prereleases or older builds)
Set KUALI_VERSION to any published release tag — with or without the v prefix:
Without KUALI_VERSION, the script installs the latest stable release.
Option 2: Direct download¶
- Open the latest release.
- Download
kuali-windows-amd64.exe(most PCs) orkuali-windows-arm64.exe(Copilot+ PCs and other ARM machines). - Rename the file to
kuali.exe. -
Move it to a folder on your
PATH. A common choice is%LOCALAPPDATA%\Programs\kuali\: -
Add that folder to your user
PATHif it isn't there already:[Environment]::SetEnvironmentVariable( "PATH", "$env:PATH;$env:LOCALAPPDATA\Programs\kuali", "User" )Open a new PowerShell window so the updated
PATHtakes effect.
Option 3: WSL¶
If you use Windows Subsystem for Linux, install the Linux build inside your WSL distro — see the Linux guide. An AI client running on Windows can still call a Connector installed in WSL if you point the MCP config at the WSL binary path (\\wsl$\Ubuntu\home\you\.local\bin\kuali).
First-launch approval¶
Windows SmartScreen may warn the first time you run an unsigned executable.
If you see "Windows protected your PC"
Click More info, then Run anyway. You'll only see this once per machine.
Verify¶
If the command isn't found, PATH likely didn't pick up the new folder — close and reopen PowerShell, or sign out and back in.
Uninstall¶
Remove-Item "$env:LOCALAPPDATA\Programs\kuali" -Recurse -Force
Remove-Item "$HOME\.kuali" -Recurse -Force
To remove the directory from your PATH, open Settings → System → About → Advanced system settings → Environment Variables, find Path under User variables, edit, and remove the …\Programs\kuali entry.
If you stored API keys in Windows Credential Manager (via kuali setup or kuali auth login), open Credential Manager → Windows Credentials and delete the entries under the kuali-cli service.