From ba0a615d3450bf4c11fe88622c26316e5a194738 Mon Sep 17 00:00:00 2001 From: Farouk Allani <81933547+farouk-allani@users.noreply.github.com> Date: Wed, 12 Aug 2026 15:47:44 +0100 Subject: [PATCH] Add Windows installation instructions to README Added Windows installation instructions for the CLI. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 3ac08ca..2b7ce9c 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,17 @@ go install github.com/keeperhub/cli/cmd/kh@latest **Binary download:** Download from [GitHub Releases](https://github.com/keeperhub/cli/releases). +**Windows:** +Download `kh__windows_amd64.zip` from [GitHub Releases](https://github.com/keeperhub/cli/releases), extract it, and add the folder to your `PATH`: + +``` +Expand-Archive kh__windows_amd64.zip -DestinationPath "$env:LOCALAPPDATA\Programs\kh" +[Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", "User") + ";$env:LOCALAPPDATA\Programs\kh", "User") +``` + +Restart your terminal, then run `kh version`. If SmartScreen blocks the first run, use `Unblock-File "$env:LOCALAPPDATA\Programs\kh\kh.exe"`. + + ## Auth ```