Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions docs/tutorials/setup-hcloud-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,22 @@ On Linux and macOS you can also install the hcloud CLI using Homebrew:
brew install hcloud
```

### 1.4 Installation using scoop
### 1.4 Installation in Windows using winget or scoop
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### 1.4 Installation in Windows using winget or scoop
### 1.4 Installation on Windows using winget or scoop


On Windows, you can install `hcloud` using scoop:
On Windows, you can install `hcloud` using winget (Windows Package Manager) or scoop:

```bash
winget install HetznerCloud.CLI
```

```bash
scoop install hcloud
```

> [!NOTE]
> The WinGet package entry is not maintained by Hetzner but points to the official releases in GitHub
> See: https://github.com/microsoft/winget-pkgs/tree/master/manifests/h/HetznerCloud/CLI

Comment on lines +50 to +63
Copy link
Contributor

@lukasmetzner lukasmetzner Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
On Windows, you can install `hcloud` using winget (Windows Package Manager) or scoop:
```bash
winget install HetznerCloud.CLI
```
```bash
scoop install hcloud
```
> [!NOTE]
> The WinGet package entry is not maintained by Hetzner but points to the official releases in GitHub
> See: https://github.com/microsoft/winget-pkgs/tree/master/manifests/h/HetznerCloud/CLI
> [!WARNING]
> The WinGet package entry is not maintained by Hetzner, but the maintainers point to our official releases on GitHub
> See: https://github.com/microsoft/winget-pkgs/tree/master/manifests/h/HetznerCloud/CLI
On Windows, you can install `hcloud` using winget (Windows Package Manager) or scoop:
```bash
winget install HetznerCloud.CLI
```
```bash
scoop install hcloud
```

I would like to make this a warning and move it above the installation command. The user should read this carefully.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it would make sense to add that versions might be late or can be skipped entirely. Looking at the repo, for example v1.56.0 is missing: https://github.com/microsoft/winget-pkgs/tree/master/manifests/h/HetznerCloud/CLI

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively we could release winget packages ourselves, like it was already requested: #958

### 1.5 Using hcloud with Docker

Instead of installing hcloud on the host, you can also use our docker image at `hetznercloud/cli`.
Expand Down