ThisIsntTheWay / powershell-rcon

RCON client written in PowerShell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

RCON client written in PowerShell.
Conforms to the RCON protocol specification as declared by the valve dev docs.

Usage

# Connect to server and authenticate
$RconClient = New-Object RconClient <Address>, <Port>
$RconClient.Authenticate(<Password>)

# Send stuff
$RconClient.Send(<Command>)

# Properly disconnect from server, object must be cleaned up manually
$RconClient.Quit()

Quickstart

Start up main.ps1 and provide your server details.
Once connected, you can start typing away commands.

About

RCON client written in PowerShell


Languages

Language:PowerShell 100.0%