Includes homelab deploy tooling, image position/zoom manifest persistence, and full trading/casino stack. Co-authored-by: Cursor <cursoragent@cursor.com>
6 lines
211 B
PowerShell
6 lines
211 B
PowerShell
$ip = "192.168.178.49"
|
|
foreach ($port in 22, 80, 443, 3080) {
|
|
$r = Test-NetConnection -ComputerName $ip -Port $port -WarningAction SilentlyContinue
|
|
Write-Output "Port ${port}: $($r.TcpTestSucceeded)"
|
|
}
|