Skip to content

Windows

Run in PowerShell as Administrator:

irm https://raw.githubusercontent.com/log-10x/pipeline-releases/main/install.ps1 | iex

This downloads and installs the MSI, downloads configuration and symbol libraries, and sets up all environment variables automatically. Requires PowerShell 5+ (included in Windows 10/11).

To install a specific version or flavor:

$env:TENX_VERSION="1.0.0"; $env:TENX_FLAVOR="edge"; irm https://raw.githubusercontent.com/log-10x/pipeline-releases/main/install.ps1 | iex

Open a new terminal after install to load the environment variables.

MSI package (manual)

  1. Download the latest MSI installer, double click and follow the instructions.

  2. Download the config tar.gz from the latest releases page.

  3. Extract the config tar.gz into C:\ProgramData\tenx

  4. Set up environment variables (see Paths for details):

setx TENX_HOME "C:\Program Files\tenx-cloud"
setx TENX_BIN "%TENX_HOME%\tenx-cloud.exe"
setx TENX_MODULES "%TENX_HOME%\lib\app\modules"
setx TENX_CONFIG "C:\ProgramData\tenx"
setx TENX_HOME "C:\Program Files\tenx-edge"
setx TENX_BIN "%TENX_HOME%\tenx-edge.exe"
setx TENX_MODULES "%TENX_HOME%\lib\app\modules"
setx TENX_CONFIG "C:\ProgramData\tenx"