Command: powershell -NoProfile -ExecutionPolicy Bypass -Command "$ErrorActionPreference='Stop';$root='C:\Users\ash\Documents\Codex\2026-08-26\LaptopBridge-DEV';$conn=Get-NetTCPConnection -LocalPort 8766 -State Listen -ErrorAction SilentlyContinue;if($conn){Stop-Process -Id $conn.OwningProcess -Force;Start-Sleep -Seconds 1};& (Join-Path $root 'start-dev-bridge.ps1');Start-Sleep -Seconds 3;$r=Invoke-WebRequest -UseBasicParsing 'http://127.0.0.1:8766/health' -TimeoutSec 5;[pscustomobject]@{health=$r.Content.Trim();prod8765=[bool](Get-NetTCPConnection -LocalPort 8765 -State Listen -ErrorAction SilentlyContinue);dev8766=[bool](Get-NetTCPConnection -LocalPort 8766 -State Listen -ErrorAction SilentlyContinue);pid8766=(Get-NetTCPConnection -LocalPort 8766 -State Listen).OwningProcess}|ConvertTo-Json -Compress"
Directory: projects
Status: SUCCESS
Exit code: 0
Cancel Job Rerun Command Refresh
DEV_BRIDGE_START_REQUESTED
{"health":"OK","prod8765":true,"dev8766":true,"pid8766":18168}