mirror of
https://github.com/onyx-and-iris/q3rcon-ps.git
synced 2025-01-18 16:50:52 +00:00
16 lines
291 B
Markdown
16 lines
291 B
Markdown
|
# Use
|
||
|
|
||
|
These examples load connection info from a file `config.psd1` placed next to the script files.
|
||
|
|
||
|
```psd1
|
||
|
@{
|
||
|
host = "hostname.server"
|
||
|
port = 28960
|
||
|
passwd = "strongrconpassword"
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Run them with -Debug flag for debug output.
|
||
|
|
||
|
For example: `pwsh.exe .\cli.ps1 -Debug`
|