Command: powershell -NoProfile -ExecutionPolicy Bypass -Command "$root='C:\Users\ash\Documents\Codex\2026-08-26\LaptopBridge-DEV'; $py='C:\Users\ash\AppData\Local\Programs\Python\Python312\python.exe'; $p=Start-Process -FilePath $py -ArgumentList 'dev_bridge_launcher.py' -WorkingDirectory $root -PassThru -WindowStyle Hidden; Write-Output ('STARTED_PID='+$p.Id); Start-Sleep -Seconds 5; try{$r=Invoke-WebRequest -UseBasicParsing 'http://127.0.0.1:8766/health' -TimeoutSec 3; Write-Output ('HEALTH='+$r.Content.Trim())}catch{Write-Output ('HEALTH_ERR='+$_.Exception.Message)}; if($p.HasExited){Write-Output ('EXITED='+$p.ExitCode)}else{Write-Output 'PROCESS_ALIVE=True'}"
Directory: projects
Status: SUCCESS
Exit code: 0
Cancel Job Rerun Command Refresh
STARTED_PID=9144 HEALTH=OK PROCESS_ALIVE=True