惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
SecWiki News
SecWiki News
Project Zero
Project Zero
C
Cisco Blogs
Simon Willison's Weblog
Simon Willison's Weblog
P
Privacy International News Feed
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Scott Helme
Scott Helme
A
Arctic Wolf
Security Latest
Security Latest
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
The Hacker News
The Hacker News
T
Tenable Blog
雷峰网
雷峰网
有赞技术团队
有赞技术团队
V
V2EX
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threat Research - Cisco Blogs
T
Threatpost
AWS News Blog
AWS News Blog
L
LINUX DO - 热门话题
Application and Cybersecurity Blog
Application and Cybersecurity Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
S
SegmentFault 最新的问题
月光博客
月光博客
Spread Privacy
Spread Privacy
S
Secure Thoughts
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
Forbes - Security
Forbes - Security
T
The Exploit Database - CXSecurity.com
G
GRAHAM CLULEY
The Last Watchdog
The Last Watchdog
Y
Y Combinator Blog
I
Intezer
博客园 - 【当耐特】
B
Blog RSS Feed
Attack and Defense Labs
Attack and Defense Labs
I
InfoQ
博客园 - 叶小钗
Cyberwarzone
Cyberwarzone
V2EX - 技术
V2EX - 技术
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
C
CERT Recently Published Vulnerability Notes

按钮与磁带

万米危机 镖人:风起大漠 暗夜情报员第三季 anchor 火遮眼 黑袍纠察队 movies 黑袍纠察队 惩罚者:最后一击 惩罚者:最后一击 暹罗没有春天 movies 寒战1994 What Does It All Mean? 英文百日写作项目 标签索引 books 网上邻居 云存储和不安全感的幻觉 跨境电商与亚马逊 因果报应 挽救计划 太阳之子 music 极乐空间 全信没收 The Memory Could Not Be Written 极限审判 东北警察故事3 家弑服务 庇护之地 New Years Day bearblog bearblog My App Defaults 2025 再见 2025 Reposition Myself Milestone CV The Storm Keep Calm And Drive On Losing A Big Coupon Mariah Carey Is Unfreezing Online Storage Service From Windows To Bazzite What Does The Dream Say? Produce Shit Comfort With AI Album By Album Too Complicated Housework GPD Win Max 2 Review, in 2025 动物乌托邦 Video Games quotes quotes 我读《道德经》 音乐
Windows 11 下修复 Codex 的 Browser Use
2026-05-05 · via 按钮与磁带

在 Windows 11 下,安装 Microsoft Store 中的官方 Codex App 有可能出现 Codex 的 Browser Use 功能无法使用的情况。起初以为是权限问题,但以管理员模式打开软件或在项目中勾选完全访问权限并未解决此问题。最终我搜索到 Reddit 的这个帖子,里面详细描述了问题的表现、起因和解决方案。现整理分享。

情况分析

当我们在 Codex 中选择或者自然语言描述使用 Browser Use 功能时,可能会收到这样的报错:

failed to execute Node: 拒绝访问。 (os error 5)

具体表现为:

  • Browser Use 插件技能文件可读取。
  • node_repl 无法启动。
  • %LOCALAPPDATA%\OpenAI\Codex\bin 目录不存在。
  • 但 Codex Windows Store 应用包目录内存在 node.exenode_repl.execodex.exe 等辅助程序。

根据错误描述和经验,我们可以知道在某些 Windows 环境下,从 WindowsApps 应用包目录直接启动这些程序会被系统权限拦截,于是出现 拒绝访问

解决思路

解决方案就是把辅助程序复制到用户目录下,具体位置: %LOCALAPPDATA%\OpenAI\Codex\bin

从而使 Codex 可以从用户目录启动它们。

Powershell 解法

在 Powershell 中使用 Get-AppxPackage -Name OpenAI.Codex | Select-Object Name,PackageFullName,InstallLocation 命令获取 Codex 当前安装路径,然后运行如下 Powershell 命令(把其中的 <InstallLocation> 换成 Codex 安装路径):

$src = "<InstallLocation>\app\resources"
$dst = "$env:LOCALAPPDATA\OpenAI\Codex\bin"
 
New-Item -ItemType Directory -Force -Path $dst | Out-Null
 
$files = @(
  "codex.exe",
  "node.exe",
  "node_repl.exe",
  "codex-command-runner.exe",
  "codex-windows-sandbox-setup.exe",
  "rg.exe"
)
 
foreach ($file in $files) {
  Copy-Item -LiteralPath (Join-Path $src $file) -Destination $dst -Force
}
 
Get-ChildItem -LiteralPath $dst

运行完后重启 Codex 即可在 Codex 中正常使用 Browser Use 功能。