Scoop (Windows)

Install Vulnetix CLI using the official Scoop bucket. This is the recommended installation method for Windows.

Quick Start

scoop bucket add vulnetix https://github.com/Vulnetix/scoop-bucket
scoop install vulnetix

# Verify installation
vulnetix --version

Upgrade

scoop update vulnetix

Or use the built-in self-updater (works regardless of install method):

vulnetix update

Architecture Support

Scoop automatically selects the correct binary for your system:

ArchitectureScoop KeyBinary
x86_64 (AMD64)64bitvulnetix-windows-amd64.exe
x86 (386)32bitvulnetix-windows-386.exe
ARM64arm64vulnetix-windows-arm64.exe

Shell Completions

Enable tab completion in PowerShell:

vulnetix completion powershell >> $PROFILE

For other shells, see the Shell Completions guide.

Uninstall

scoop uninstall vulnetix

# Optionally remove the bucket
scoop bucket rm vulnetix

Troubleshooting

Bucket Not Found

# Re-add the bucket
scoop bucket rm vulnetix
scoop bucket add vulnetix https://github.com/Vulnetix/scoop-bucket

Version Not Updated After Release

The Scoop manifest includes autoupdate configuration that tracks GitHub releases. If the latest version is not yet available:

scoop update
scoop update vulnetix

Scoop Not Installed

Install Scoop first:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression