Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thisisnttheway/powershell-rcon

RCON client written in PowerShell
https://github.com/thisisnttheway/powershell-rcon

powershell rcon rcon-client

Last synced: 21 days ago
JSON representation

RCON client written in PowerShell

Awesome Lists containing this project

README

        

# About
RCON client written in PowerShell.
Conforms to the RCON protocol specification as declared by the [valve dev docs](https://developer.valvesoftware.com/wiki/Source_RCON_Protocol).

## Usage
```PowerShell
# Connect to server and authenticate
$RconClient = New-Object RconClient

,
$RconClient.Authenticate()

# Send stuff
$RconClient.Send()

# 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.

![](https://user-images.githubusercontent.com/13659371/196057294-48b57fa8-48e4-40f6-8f96-a994638027ab.png)