You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
发现pwsh/grep/glob工具调用均崩溃并返回0xC0000409

排查后,发现是由于启动dsh web的终端被关掉,Harness 失去控制台;它拉起的控制台子进程需新建控制台,被电脑管家的弹窗/进程拦截,子进程在初始化阶段被终止。
解决:
直接重启发现旧实例占用端口
kill相关进程之后重启:
$p = Get-NetTCPConnection -LocalPort 3080 -State Listen | Select-Object -First 1 -ExpandProperty OwningProcess Get-CimInstance Win32_Process -Filter "ProcessId = $p" | Select-Object ProcessId, Name, CommandLineStop-Process -Id $p -Forcenpx @deepseek-ai/dsh web问题顺利解决,希望对遇到相似问题的人有帮助
顺便呼吁一下官方推出后台/守护进程支持,确实比较容易手滑关掉
All reactions