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 1/2] 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 ``` From 9cdd4094434710a3b2552882448ed65afb30363b Mon Sep 17 00:00:00 2001 From: Jacob Sussmilch Date: Tue, 18 Aug 2026 08:58:25 +1000 Subject: [PATCH 2/2] docs: collapse double blank line before Auth section --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2b7ce9c..0cc767e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,6 @@ Expand-Archive kh__windows_amd64.zip -DestinationPath "$env:LOCALAPPDAT Restart your terminal, then run `kh version`. If SmartScreen blocks the first run, use `Unblock-File "$env:LOCALAPPDATA\Programs\kh\kh.exe"`. - ## Auth ```