Install zrok in Windows
Windows Binary
Windows
-
Unarchive the distribution in a temporary directory:
New-Item -Path "$env:TEMP\zrok" -ItemType Directory -ErrorAction Stop
tar -xf .\zrok*windows*.tar.gz -C "$env:TEMP\zrok" -
Install the
zrok
executable and include HOME\bin in the search PATH.$source = Join-Path -Path $env:TEMP -ChildPath "zrok\zrok.exe"
$destination = Join-Path -Path $env:USERPROFILE -ChildPath "bin\zrok.exe"
New-Item -Path $destination -ItemType Directory -ErrorAction SilentlyContinue
Copy-Item -Path $source -Destination $destination
$env:path += ";"+$destination -
With the
zrok
executable in your path, you can then execute thezrok
directly.zrok version