Win11 codex 桌面版死都打不开,不知道有没有人遇到

发布于

折腾了好久,看到这个 [链接](https://github.com/openai/codex/issues/31808)

创建一个 `Codex.ps1` 文件,写入:

```powershell
$dir = Join-Path (Get-AppxPackage Codex).InstallLocation "app"
Start-Process -FilePath (Join-Path $dir "ChatGPT.exe") -ArgumentList "--no-sandbox" -WorkingDirectory $dir
```

然后在 PowerShell 里执行,终于可以打开了。

---

原文链接:[点击查看](https://www.v2ex.com/t/1226999)

评论(2)

我也碰到了这事儿。不过我是靠 codebuddy 搞定的,查了下原因,发现是腾讯把系统自带的杀毒软件给禁用了,导致 codex 根本装不上。

· 0 个赞

加 `--no-sandbox` 参数可以说是老生常谈的套路了。基本上那些套壳浏览器打不开的问题都可以试试这招,甚至连 Chrome 自己遇到类似情况也能这么搞。

· 0 个赞