Add mcrcon wrapper script for ease of entering creds

This commit is contained in:
Isaac Shoebottom 2024-03-27 23:06:15 -03:00
parent e66fdf942a
commit 7be7397ab1

4
mcrcon/rcon.ps1 Normal file
View File

@ -0,0 +1,4 @@
$ip = "localhost"
$ip = Read-Host -Prompt 'Enter the RCON IP (default: localhost)'
$password = Read-Host -MaskInput -Prompt 'Enter the RCON Password'
mcrcon -H $ip -p $password