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

推荐订阅源

cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
LINUX DO - 最新话题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Forbes - Security
Forbes - Security
博客园 - 司徒正美
Hugging Face - Blog
Hugging Face - Blog
W
WeLiveSecurity
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
N
News and Events Feed by Topic
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
PCI Perspectives
PCI Perspectives
Martin Fowler
Martin Fowler
T
The Exploit Database - CXSecurity.com
F
Full Disclosure
WordPress大学
WordPress大学
S
Security Affairs
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
S
SegmentFault 最新的问题
P
Privacy International News Feed
IT之家
IT之家
M
MIT News - Artificial intelligence
G
GRAHAM CLULEY
Hacker News: Ask HN
Hacker News: Ask HN
D
DataBreaches.Net
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
C
Check Point Blog
美团技术团队
Security Latest
Security Latest
Cyberwarzone
Cyberwarzone
N
News and Events Feed by Topic
MyScale Blog
MyScale Blog
H
Help Net Security
宝玉的分享
宝玉的分享
The Hacker News
The Hacker News
The Last Watchdog
The Last Watchdog
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
I
Intezer
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
AI
AI
I
InfoQ
N
News | PayPal Newsroom
TaoSecurity Blog
TaoSecurity Blog

按钮与磁带

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