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

推荐订阅源

有赞技术团队
有赞技术团队
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
P
Palo Alto Networks Blog
C
Cisco Blogs
The Hacker News
The Hacker News
T
Threatpost
S
Schneier on Security
K
Kaspersky official blog
Spread Privacy
Spread Privacy
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
NISL@THU
NISL@THU
量子位
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Google DeepMind News
Google DeepMind News
Security Latest
Security Latest
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
News and Events Feed by Topic
爱范儿
爱范儿
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Project Zero
Project Zero
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Cisco Talos Blog
Cisco Talos Blog
GbyAI
GbyAI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Apple Machine Learning Research
Apple Machine Learning Research
T
Tenable Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
Vulnerabilities – Threatpost
Forbes - Security
Forbes - Security
博客园 - 三生石上(FineUI控件)
C
Cyber Attacks, Cyber Crime and Cyber Security
N
News and Events Feed by Topic
V
V2EX
Webroot Blog
Webroot Blog
The Register - Security
The Register - Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
Scott Helme
Scott Helme
Simon Willison's Weblog
Simon Willison's Weblog
L
LangChain Blog
W
WeLiveSecurity
Cloudbric
Cloudbric

按钮与磁带

万米危机 镖人:风起大漠 暗夜情报员第三季 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 功能。