CodeX电脑操控/Computer use插件不可用解决方案

发布时间:2026/6/8 0:26:02
CodeX电脑操控/Computer use插件不可用解决方案
CodeX电脑操控/Computer use插件不可用解决方案亲测解决办法让Codex或者ClaudeCode直接读取本文内容进行修复即可生效。问题描述CodeX电脑操控/Computer use插件不可用版本是 26.602.4764.0_x64更新之后 Windows应该可以使用 computer use 的插件了但是打开Codex之后还是不能使用该插件。问题总结Codex 设置页要能显示 Chrome / Computer Use至少要同时满足openai-bundled marketplace 注册正常。chromeopenai-bundled /computer-useopenai-bundled 能被 codex plugin list 找到。插件已经 installed, enabled。插件缓存目录完整尤其是 Chrome 的 scripts/browser-client.mjs、extension-host.exe。Chrome native host 注册正常。问题是openai-bundled 源没正确进入 marketplace直接从 WindowsApps 应用包安装又因为文件是 Application Protected触发 os error 6000。所以界面只看到 “配置里启用了”但插件市场和缓存实际不可用UI 就不显示。正确修法如下第一步先备份Codex数据$backup“\.\backups\plugin − −(Get-Date-FormatyyyyMMdd-HHmmss)” New-Item-ItemTypeDirectory-Force$backupCopy-Item “$HOME.codex\config.toml”$backup-ForceCopy-Item “$HOME.codex.codex-global-state.json”$backup-Force-ErrorActionSilentlyContinue第二步找 Codex 桌面版 bundled 插件源Get-Process Codex|Select-Object Path 然后按实际路径找到 …\Codex…\app\resources\plugins\openai-bundled 如果直接注册后安装报 os error6000不要硬改权限正确做法是复制一份未加密镜像到用户目录再注册这个镜像源。示例把这里改成你本机实际路径$src “D:\WindowsApps\OpenAI.Codex_版本号 \app\resources\plugins\openai-bundled”$dst “$HOME.codex\plugins\sources\openai-bundled-fixed”用字节流复制避免 WindowsApps 加密属性导致 os error 6000New-Item-ItemType Directory-Force$dst|Out-NullGet-ChildItem$src-Recurse-Directory|ForEach-Object{New-Item-ItemType Directory-Force(Join-Path.FullName.Substring($src.Length).TrimStart())|Out-Null}Get-ChildItem$src-Recurse-File|ForEach-Object{$targetJoin-Path.FullName.Substring($src.Length).TrimStart()New-Item-ItemType Directory-Force(Split-Path$target)|Out-Null[IO.File]::WriteAllBytes(,[.]::(_.FullName))}codex plugin marketplace remove openai-bundled codex plugin marketplace add$dstcodex plugin add chromeopenai-bundled codex plugin add computer-useopenai-bundled 验证 codex plugin list--marketplace openai-bundled 应该看到 chromeopenai-bundled installed,enabled computer-useopenai-bundled installed,enabled 最后重启 Codex。其他方法https://github.com/chen0416ccc-cpu/codex-windows-fast-patch-skill使用 codex-windows-fast-patch 这个 skill检查并修复这台 Windows 机器上的 Codex Desktop Fast Mode、插件市场和 Computer Use 等可用性问题。