摘要
此更新改进了 Windows 11 版本 24H2 中的 Windows 恢复环境。
如何获取此更新
安装此更新
若要安装此更新,请使用以下发布频道之一。
|
可用 |
后续步骤 |
|
否 |
此更新无法通过Windows 更新提供。 请参阅更新目录发布通道。 |
|
可用 |
后续步骤 |
|
是 |
若要获取此更新的独立包,请转到Microsoft更新目录网站。 若要从更新目录下载更新,请参阅 从 Windows 更新目录下载更新的步骤。 |
|
可用 |
后续步骤 |
|
是 |
此更新将作为关联的 Windows 每月安全更新的一部分进行安装。 此外,如果按如下所示配置产品和分类,此更新将自动与 WSUS 同步:
|
|
先决条件 |
应用此更新没有任何先决条件。 |
|
重启信息 |
应用此更新后,无需重新启动您的设备。 |
|
删除信息 |
应用到 Windows 映像后,无法删除此更新。 |
|
更新替代信息 |
此更新将替换以前发布的更新KB5041137。 |
|
验证此更新的安装 |
安装此更新后,设备上安装的 WinRE 版本应为 10.0.26100.1287。 |
若要获取安装的 WinRE 版本,请使用管理员凭据运行以下 PowerShell 脚本“GetWinReVersion.ps1”。 运行该脚本后,应该会收到已安装的 WinRE 版本,如以下示例所示:
GetWinReVersion.ps1 PowerShell 脚本
################################################################################################
#
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
################################################################################################
# Function to get WinRE path
function GetWinREPath {
$WinRELocation = (reagentc /info | Select-String "Windows RE location")
if ($WinRELocation) {
return $WinRELocation.ToString().Split(':')[-1].Trim()
} else {
Write-Host "Failed to find WinRE path" -ForegroundColor Red
exit 1
}
}
# Creates and needs to be return the mount directory
function GetMountDir {
# systemdirve\mnt
$MountDir = "$env:SystemDrive\mnt"
if (-not (Test-Path $MountDir)) {
New-Item -ItemType Directory -Path $MountDir -Force | Out-Null
}
return $MountDir
}
# Function to get WinRE version
function GetWinREVersion {
$mountedPath = GetMountDir
$filePath = "$mountedPath\Windows\System32\winpeshl.exe"
$WinREVersion = (Get-Item $filePath).VersionInfo.FileVersionRaw.Revision
return [int]$WinREVersion
}
# Main Execution
$WinREPath = GetWinREPath
# Make dir C:\mnt if not exists
$TempDir = GetMountDir
# Get the read write permission for this directory
if (-not (Test-Path $TempDir)) {
New-Item -ItemType Directory -Path $TempDir -Force | Out-Null
}
# Mount WinRE image
dism /Mount-Image /ImageFile:"$WinREPath\winre.wim" /Index:1 /MountDir:"$TempDir"
$WinREVersion = GetWinREVersion
Write-Host "WinRE Version: $WinREVersion" -ForegroundColor Cyan
dism /Unmount-Image /MountDir:"$TempDir" /Discard
Remove-Item -Path $TempDir -Force -Recurse
WinREAgent 记录与 Windows 恢复环境 (WinRE) 相关的事件,主要记录有关恢复图像的创建、修改和使用情况的详细信息。 在这种情况下,我们正在寻找 事件 ID:4501 服务成功 事件。 如果由于环境中可能出现的空间限制而找不到 WinREAgent 服务事件,我们建议使用 DISM 命令。
-
打开 Windows Search 栏。 为此,请右键单击“开始”,然后单击“搜索”。
-
在 搜索栏中,键入 事件查看器,然后单击 事件查看器。
-
展开 Windows 日志,然后单击“系统”。
-
在右侧导航窗格中的“操作”下,单击“查找”。
-
在“查找内容:”框中,键入 WinREAgent,然后单击“查找下一步”。
-
单击“取消”以关闭查找对话框。 WinREAgent 服务事件应显示在中间底部窗格中,你应该会在“常规”选项卡上看到类似于以下内容的消息:
服务运行成功。 Windows 恢复环境版本现在是:10.0.22621.4742
此示例中的 WinRE 版本为 10.0.22621.4742。
-
若要查看 WinREAgent 服务事件的 事件属性 窗格,请右键单击“系统”窗格(中间顶部窗格)中的 WinREAgent 条目,然后单击“事件属性”。
-
打开提升的 Windows 命令提示符。 为此,请按 Windows 徽标键,键入 cmd,右键单击“命令提示符”,然后单击“以管理员身份运行”。
-
在命令提示符处,键入 reagentc /info ,然后按 Enter。
-
请注意 Windows RE 位置的路径。 在此示例中,位置为 \\?\GLOBALROOT\device\harddisk0\partition5\Recovery\WindowsRE。 此路径可能因 Windows 安装而异。
-
在命令提示符下,使用 DISM 命令检索 Windows 恢复环境 (WinRE) 信息。 对于此示例,请输入以下命令,然后按 Enter:
Dism /Get-ImageInfo /ImageFile:\\?\GLOBALROOT\device\harddisk0\partition5\Recovery\WindowsRE\winre.wim /index:1
注意 WinRE 图像文件的默认名称是 winre.wim。 在环境中,WinRE 图像文件的名称可能不同。 此外,默认 winre.wim 文件的索引号为 1。 在你的环境中,索引号可能不同。
-
如以下示例所示返回 WinRE 图像文件信息:
本示例中的 WinRE 版本为 10.0.22621.4742。
文件信息
此软件更新程序的英语(美国)版本将安装具有下表所列属性的文件。
|
文件名 |
文件版本 |
日期 |
时间 |
文件大小 |
|
storufs.inf |
未版本控制 |
10-Jul-24 |
2:11 |
24,702 |
|
storufs.sys |
10.0.26100.560 |
10-Jul-24 |
2:11 |
148,800 |
|
Facilitator.dll |
10.0.26100.1287 |
10-Jul-24 |
2:11 |
1,111,456 |
|
dhcpcore.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
435,616 |
|
dhcpcsvc.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
157,104 |
|
dhcpcore6.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
320,928 |
|
dhcpcsvc6.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
128,416 |
|
ncsi.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
692,224 |
|
netprofmsvc.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
1,871,872 |
|
nlaapi.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
53,248 |
|
nlmproxy.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
53,248 |
|
nlmsprep.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
49,152 |
|
bcd.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
162,616 |
|
bootsvc.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
307,136 |
|
hwreqchk.dll |
未版本控制 |
10-Jul-24 |
2:11 |
423,328 |
|
ServicingCommon.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
1,030,248 |
|
utcapi.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
66,872 |
|
wimgapi.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
910,768 |
|
wdscommonlib.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
341,424 |
|
dismapi.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
1,201,480 |
|
dismcore.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
476,480 |
|
dismcoreps.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
230,816 |
|
dismprov.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
300,344 |
|
folderprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
95,552 |
|
imagingprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
247,200 |
|
logprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
189,752 |
|
UpdateCompression.dll |
5.0.1.1 |
10-Jul-24 |
2:11 |
542,016 |
|
vhdprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
599,456 |
|
wimprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
697,656 |
|
unattend.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
275,872 |
|
wpx.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
1,422,640 |
|
locale.nls |
未版本控制 |
10-Jul-24 |
2:11 |
861,992 |
|
nlsbres.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
103,856 |
|
ServicingCommon.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
1,030,224 |
|
winpeshl.exe |
10.0.26100.1287 |
10-Jul-24 |
2:11 |
57,344 |
|
wpeutil.dll |
10.0.26100.1287 |
10-Jul-24 |
2:11 |
159,744 |
|
wpeutil.exe |
10.0.26100.1287 |
10-Jul-24 |
2:11 |
32,768 |
|
wpeinit.exe |
10.0.26100.1287 |
10-Jul-24 |
2:11 |
61,440 |
|
startnet.cmd |
未版本控制 |
10-Jul-24 |
2:11 |
9 |
|
dhcpcore.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
343,872 |
|
dhcpcsvc.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
97,072 |
|
dhcpcore6.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
246,576 |
|
dhcpcsvc6.dll |
10.0.26100.712 |
10-Jul-24 |
2:11 |
82,864 |
|
ServicingCommon.dll |
10.0.26100.998 |
10-Jul-24 |
2:11 |
827,904 |
|
文件名 |
文件版本 |
日期 |
时间 |
文件大小 |
|
storufs.inf |
未版本控制 |
10-Jul-24 |
2:08 |
24,702 |
|
storufs.sys |
10.0.26100.560 |
10-Jul-24 |
2:08 |
108,344 |
|
Facilitator.dll |
10.0.26100.1287 |
10-Jul-24 |
2:08 |
1,160,008 |
|
dhcpcore.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
720,816 |
|
dhcpcsvc.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
254,896 |
|
dhcpcore6.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
513,328 |
|
dhcpcsvc6.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
168,752 |
|
ncsi.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
1,222,144 |
|
netprofmsvc.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
1,927,680 |
|
nlaapi.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
75,264 |
|
nlmproxy.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
77,312 |
|
nlmsprep.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
57,344 |
|
bcd.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
145,112 |
|
bootsvc.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
282,528 |
|
hwreqchk.dll |
未版本控制 |
10-Jul-24 |
2:08 |
757,152 |
|
ServicingCommon.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
1,941,128 |
|
utcapi.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
46,512 |
|
wimgapi.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
1,538,480 |
|
wdscommonlib.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
322,464 |
|
dismapi.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
2,067,264 |
|
dismcore.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
783,664 |
|
dismcoreps.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
217,504 |
|
dismprov.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
297,280 |
|
folderprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
162,608 |
|
imagingprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
470,344 |
|
logprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
180,128 |
|
UpdateCompression.dll |
5.0.1.1 |
10-Jul-24 |
2:08 |
930,736 |
|
vhdprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
1,090,368 |
|
wimprovider.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
1,283,376 |
|
unattend.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
256,416 |
|
wpx.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
1,553,840 |
|
locale.nls |
未版本控制 |
10-Jul-24 |
2:08 |
861,992 |
|
nlsbres.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
95,136 |
|
ServicingCommon.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
1,941,136 |
|
winpeshl.exe |
10.0.26100.1287 |
10-Jul-24 |
2:08 |
37,376 |
|
wpeutil.dll |
10.0.26100.1287 |
10-Jul-24 |
2:08 |
139,776 |
|
wpeutil.exe |
10.0.26100.1287 |
10-Jul-24 |
2:08 |
15,872 |
|
wpeinit.exe |
10.0.26100.1287 |
10-Jul-24 |
2:08 |
39,424 |
|
startnet.cmd |
未版本控制 |
10-Jul-24 |
2:08 |
9 |
|
dhcpcore.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
343,872 |
|
dhcpcsvc.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
97,072 |
|
dhcpcore6.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
246,576 |
|
dhcpcsvc6.dll |
10.0.26100.712 |
10-Jul-24 |
2:08 |
82,864 |
|
ServicingCommon.dll |
10.0.26100.998 |
10-Jul-24 |
2:08 |
827,904 |
参考资料
查询字词:safeos du