Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thisisnttheway/powershell-rcon
- Owner: ThisIsntTheWay
- Created: 2022-10-16T18:18:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-17T13:55:02.000Z (about 2 years ago)
- Last Synced: 2024-11-16T06:28:23.174Z (3 months ago)
- Topics: powershell, rcon, rcon-client
- Language: PowerShell
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)