Skip to content

Commit

Permalink
Merge pull request #821 from openziti/refine-windows-install
Browse files Browse the repository at this point in the history
polish windows install a little more
  • Loading branch information
qrkourier authored Jan 9, 2025
2 parents c0196e1 + b408985 commit bcb00b1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/guides/install/windows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ import styles from '@site/src/css/download-card.module.css';
</div>
</AssetsProvider>

1. In PowerShell, install in `%USERPROFILE%\bin\zrok.exe` and set the search path.
1. In PowerShell, change to the directory where you downloaded zrok.

```text
cd "$env:USERPROFILE\Downloads"
```

1. In PowerShell, install zrok in your home directory (`bin\zrok.exe`), and permanently set the executable search path.

```text
$binDir = Join-Path -Path $env:USERPROFILE -ChildPath "bin"
Expand Down

0 comments on commit bcb00b1

Please sign in to comment.