<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[gOxiA=苏繁=SuFan Blog]]></title> 
<link>https://sufan.maytide.net/index.php</link> 
<description><![CDATA[gOxiA,苏繁,sufan,Microsoft MVP]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[gOxiA=苏繁=SuFan Blog]]></copyright>
<item>
<link>https://sufan.maytide.net/read.php/2193.htm</link>
<title><![CDATA[HOWTO: 在 OOBE 阶段实现 Microsoft Edge 自动更新]]></title> 
<author>gOxiA &lt;sufan_cn@msn.com&gt;</author>
<category><![CDATA[Deployment]]></category>
<pubDate>Fri, 22 May 2026 05:35:27 +0000</pubDate> 
<guid>https://sufan.maytide.net/read.php/2193.htm</guid> 
<description>
<![CDATA[ 
	<p><a href="https://goxia.maytide.net/ftpup/2026/HOWTO--OOBE--Microsoft-Edge_AD4E/microsoft-edge.png"><img width="120" height="120" title="microsoft-edge" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="microsoft-edge" src="https://goxia.maytide.net/ftpup/2026/HOWTO--OOBE--Microsoft-Edge_AD4E/microsoft-edge_thumb.png" border="0"></a></p><p><font color="#fd3f0d" size="4"><strong>HOWTO: 在 OOBE 阶段实现 Microsoft Edge 自动更新</strong></font></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在组织环境中为用户执行交付时会遇到 Microsoft Edge 不是最新版本的问题，这些要交付用户的设备系统映像可能是 OEM 预装，或 IT 构建的标准化映像，但其 Edge 版本很难与当前版本同步，为了确保最终用户获得最新的版本来保障安全和最佳的适用体验，IT 人员需要设计实现在系统的初始化阶段执行 Microsoft Edge 自动更新，确保用户登录系统后首次打开的 Edge 已是最新版本。</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 综上，在 Windows OOBE 阶段实现 Microsoft Edge 自动更新是最佳的方案。我们可以借助 MicrosoftEdgeUpdate 程序并加载相关的参数来触发其自动更新机制，以下是命令行示例：</p><p><div class="code">Start-Process -FilePath \"C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe\" -argumentlist \"/silent /install appguid=&#123;56EB18F8-B008-4CBD-B6D2-8C97FE7E9062&#125;&amp;appname=Microsoft%20Edge&amp;needsadmin=True\"</div></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 其中的参数：</p><ul><li>/silent 表示静默安装</li><li>/install 表示执行安装/更新动作</li><li>/appguid=&#123;56EB18F8-B008-4CBD-B6D2-8C97FE7E9062&#125; 表示 Stable 版本</li><li>&amp;needsadmin=True 表示需要管理员权限</li></ul><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从参数上看 needsadmin 是重中之重，因为它将让更新运行在系统上下文中，确保是设备级别的更新。</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 对于传统部署，我们可以在 oobeSystem 阶段添加 FirstLogonCommands，通过 SynchronousCommand 来执行更新这段命令行，以实现 Microsoft Edge 的自动更新，确保用户登录系统后使用的是最新版本的 Edge。</p><p><a href="https://goxia.maytide.net/ftpup/2026/HOWTO--OOBE--Microsoft-Edge_AD4E/msedge-update-unattend.png"><img width="630" height="206" title="msedge-update-unattend" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="msedge-update-unattend" src="https://goxia.maytide.net/ftpup/2026/HOWTO--OOBE--Microsoft-Edge_AD4E/msedge-update-unattend_thumb.png" border="0"></a></p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 如果当前组织利用 Intune 这类现代部署方案，则可以将这个命令行使用“<a href="https://github.com/microsoft/Microsoft-Win32-Content-Prep-Tool.git" target="_blank">Microsoft Win32 Content Prep Tool</a>”工具打包为 .intunewin 文件上传 Intune 进行分发即可，但请确保其必须在 ESP 阶段执行。</p><p><a href="https://goxia.maytide.net/ftpup/2026/HOWTO--OOBE--Microsoft-Edge_AD4E/msedge-update-inutne.png"><img width="518" height="732" title="msedge-update-inutne" style="border: 0px currentcolor; border-image: none; display: inline; background-image: none;" alt="msedge-update-inutne" src="https://goxia.maytide.net/ftpup/2026/HOWTO--OOBE--Microsoft-Edge_AD4E/msedge-update-inutne_thumb.png" border="0"></a></p>
]]>
</description>
</item>
</channel>
</rss>