RCON client written in PowerShell.
Conforms to the RCON protocol specification as declared by the valve dev docs.
# 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()
Start up main.ps1
and provide your server details.
Once connected, you can start typing away commands.