9 lines
193 B
PowerShell
9 lines
193 B
PowerShell
[CmdletBinding()]
|
|
param(
|
|
[string]$HostName = "127.0.0.1",
|
|
[int]$Port = 8770
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
python scripts/management_console_server.py --host $HostName --port $Port
|