Windows
Windows
Install the rstream CLI on Windows.
On Windows, add the rstream source once from an elevated terminal and install with winget:
winget source add -n rstream -a https://winget.rstream.io/api -t Microsoft.Rest
winget install rstreamIf winget is not available, use the PowerShell installer:
& { Invoke-Expression ([System.Text.Encoding]::UTF8.GetString((Invoke-WebRequest -Uri 'https://rstream.io/scripts/install.ps1' -UseBasicParsing).Content)) }If Node.js is already part of your toolchain, you can also install the CLI with npm:
npm install -g @rstreamlabs/rstream-cliWhen installed through npm on Windows PowerShell, the generated rstream.ps1 launcher can be blocked by the local execution policy.
Either use rstream.cmd for subsequent CLI commands:
rstream.cmd --versionOr, if permitted by your environment, allow locally installed scripts for the current user and continue with rstream:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
rstream --versionThe CLI is also available as a Docker image and can be used without installing binaries on the host:
docker run --rm -it rstream/rstream:latest rstream --help