Skip to main content

Install zrok in Windows

Windows Binary

Windows logo

Windows

  1. 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"
  2. 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
  3. With the zrok executable in your path, you can then execute the zrok directly.

    zrok version
    Output

    _____ __ ___ | | __
    |_ / '__/ _ \| |/ /
    / /| | | (_) | <
    /___|_| \___/|_|\_\

    v0.4.0 [c889005]