Windows 安全启动证书过期
重要提示: 大多数 Windows 设备使用的安全启动证书从 2026 年 6 月开始过期。 若未能及时更新,这可能会影响某些个人和企业设备安全启动的能力。 为避免中断,建议查看指南并提前采取措施更新证书。 有关详细信息和准备步骤,请参阅Windows 安全启动证书过期和 CA 更新
摘要
此更新改进了 Windows 恢复环境 (WinRE) 。
如何获取此更新
安装此更新
若要安装此更新,请使用以下发布频道之一。
|
可用 |
后续步骤 |
|
|
可以通过 Windows 更新获取此更新。 此更新会自动下载并安装。 |
|
可用 |
后续步骤 |
|
|
若要获取此更新的独立包,请转到 Microsoft更新目录 网站。 若要从更新目录下载更新,请参阅 从 Windows 更新目录下载更新的步骤。 若要手动安装此更新,请参阅将更新包添加到Windows RE。 |
|
可用 |
后续步骤 |
|
|
对于Windows 10,版本 1607 和 Windows Server 2016 请参阅其他发布渠道。 |
|
先决条件 |
应用此更新没有任何先决条件。 |
|
重启信息 |
应用此更新后,无需重新启动您的设备。 |
|
删除信息 |
应用到 Windows 映像后,无法删除此更新。 |
|
更新替代信息 |
此更新将替换以前发布的更新 KB5067015。 |
|
验证此更新的安装 |
安装此更新后,设备上安装的 WinRE 版本应为 10.0.14393.8592。 |
若要获取安装的 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。
文件信息
此软件更新的英语(美国)版本会安装具有以下属性的文件。 此更新可能包含其他语言的文件。
|
文件名 |
文件版本 |
日期 |
时间 |
文件大小 |
|
usbccgp.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
127,952 |
|
usb.inf |
未版本控制 |
23-Oct-25 |
18:57 |
41,608 |
|
USBHUB3.SYS |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
432,104 |
|
usbhub3.inf |
未版本控制 |
23-Oct-25 |
18:57 |
11,144 |
|
usbd.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
27,088 |
|
usbehci.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
75,216 |
|
usbhub.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
372,160 |
|
usbohci.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
22,528 |
|
usbport.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
383,464 |
|
usbuhci.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
25,600 |
|
usbport.inf |
未版本控制 |
23-Oct-25 |
18:57 |
77,418 |
|
winload.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
956,704 |
|
winload.efi |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
1,091,464 |
|
bootmgfw.efi |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
1,016,312 |
|
bootmgfw_EX.efi |
10.0.26100.30212 |
23-Oct-25 |
18:57 |
2,376,464 |
|
SecureBootRecovery.efi |
未版本控制 |
23-Oct-25 |
18:57 |
39,296 |
|
bootmgr.efi |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
1,002,976 |
|
bootmgr_EX.efi |
10.0.26100.30212 |
23-Oct-25 |
18:57 |
2,363,264 |
|
boot.stl |
未版本控制 |
23-Oct-25 |
18:57 |
10,853 |
|
bootux.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
3,716,096 |
|
winresume.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
792,904 |
|
winresume.efi |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
899,848 |
|
BootMenuUX.dll |
10.0.14393.8415 |
23-Oct-25 |
18:57 |
496,128 |
|
bootim.exe |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
20,992 |
|
ci.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
595,224 |
|
driver.stl |
未版本控制 |
23-Oct-25 |
18:57 |
05/27/2020 |
|
fltMgr.sys |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
293,880 |
|
hal.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
348,640 |
|
halmacpi.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
348,640 |
|
cmi2migxml.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
142,800 |
|
csiagent.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
515,520 |
|
diagER.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
44,480 |
|
hwcompat.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
169,392 |
|
hwcompat.txt |
未版本控制 |
23-Oct-25 |
18:57 |
2,740 |
|
hwexclude.txt |
未版本控制 |
23-Oct-25 |
18:57 |
2 |
|
migapp.xml |
未版本控制 |
23-Oct-25 |
18:57 |
654,548 |
|
migcore.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
6,502,408 |
|
mighost.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
265,136 |
|
migres.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
17,344 |
|
migisol.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
123,352 |
|
migstore.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
942,568 |
|
migsys.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
306,112 |
|
MXEAgent.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
241,624 |
|
offline.xml |
未版本控制 |
23-Oct-25 |
18:57 |
33,714 |
|
oscomps.xml |
未版本控制 |
23-Oct-25 |
18:57 |
435,175 |
|
oscomps.woa.xml |
未版本控制 |
23-Oct-25 |
18:57 |
249,101 |
|
osfilter.inf |
未版本控制 |
23-Oct-25 |
18:57 |
21,299 |
|
reagent.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
972,224 |
|
setupplatform.cfg |
未版本控制 |
23-Oct-25 |
18:57 |
1,664 |
|
setupplatform.dll |
1.42.14393.8592 |
23-Oct-25 |
18:57 |
5,774,792 |
|
setupplatform.exe |
1.42.14393.8592 |
23-Oct-25 |
18:57 |
155,032 |
|
SFCN.dat |
未版本控制 |
23-Oct-25 |
18:57 |
18:24 |
|
SFLCID.dat |
未版本控制 |
23-Oct-25 |
18:57 |
1,644 |
|
SFLISTW7.dat |
未版本控制 |
23-Oct-25 |
18:57 |
1,703,322 |
|
SFLISTW8.dat |
未版本控制 |
23-Oct-25 |
18:57 |
2,608,968 |
|
SFLISTWB.dat |
未版本控制 |
23-Oct-25 |
18:57 |
3,173,014 |
|
SFLISTWT.dat |
未版本控制 |
23-Oct-25 |
18:57 |
4,935,856 |
|
sflistw8.woa.dat |
未版本控制 |
23-Oct-25 |
18:57 |
954,506 |
|
SFLISTRS1.dat |
未版本控制 |
23-Oct-25 |
18:57 |
5,590,872 |
|
sflistwb.woa.dat |
未版本控制 |
23-Oct-25 |
18:57 |
1,150,204 |
|
sflistwt.woa.dat |
未版本控制 |
23-Oct-25 |
18:57 |
2,637,298 |
|
SFPAT.inf |
未版本控制 |
23-Oct-25 |
18:57 |
11,345 |
|
SFPATW7.inf |
未版本控制 |
23-Oct-25 |
18:57 |
17,117 |
|
SFPATW8.inf |
未版本控制 |
23-Oct-25 |
18:57 |
79,539 |
|
SFPATWB.inf |
未版本控制 |
23-Oct-25 |
18:57 |
91,356 |
|
SFPATWT.inf |
未版本控制 |
23-Oct-25 |
18:57 |
165,630 |
|
SFPATRS1.inf |
未版本控制 |
23-Oct-25 |
18:57 |
169,643 |
|
unbcl.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
842,176 |
|
upgradeagent.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
2,425,776 |
|
upgradeagent.xml |
未版本控制 |
23-Oct-25 |
18:57 |
70,803 |
|
upgrade_bulk.xml |
未版本控制 |
23-Oct-25 |
18:57 |
190,757 |
|
upgrade_data.xml |
未版本控制 |
23-Oct-25 |
18:57 |
31,023 |
|
upgrade_frmwrk.xml |
未版本控制 |
23-Oct-25 |
18:57 |
15,010 |
|
upgWow_bulk.xml |
未版本控制 |
23-Oct-25 |
18:57 |
97,470 |
|
uninstall.xml |
未版本控制 |
23-Oct-25 |
18:57 |
3,187 |
|
uninstall_data.xml |
未版本控制 |
23-Oct-25 |
18:57 |
8,973 |
|
wdsutil.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
232,896 |
|
iertutil.dll |
11.0.14393.8592 |
23-Oct-25 |
18:57 |
2,329,008 |
|
ClipSp.sys |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
591,344 |
|
dxgkrnl.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
1,889,728 |
|
cdd.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
185,856 |
|
dxgmms1.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
344,000 |
|
dxgmms2.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
551,888 |
|
netio.sys |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
344,568 |
|
ntdll.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
1,585,312 |
|
ntoskrnl.exe |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
6,044,152 |
|
wof.sys |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
175,072 |
|
pdc.sys |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
94,216 |
|
diagtrack.dll |
10.0.10586.0 |
23-Oct-25 |
18:57 |
922,976 |
|
diagtrackrunner.exe |
10.0.10586.0 |
23-Oct-25 |
18:57 |
79,040 |
|
ii.admx |
未版本控制 |
23-Oct-25 |
18:57 |
1,240 |
|
reagent.xml |
未版本控制 |
23-Oct-25 |
18:57 |
781 |
|
SetupPlatform.cfg |
未版本控制 |
23-Oct-25 |
18:57 |
7,902 |
|
wdsclientapi.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
238,488 |
|
wdscore.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
203,200 |
|
wdscsl.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
52,672 |
|
wdsimage.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
774,576 |
|
wdstptc.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
561,056 |
|
fvevol.sys |
10.0.14393.8415 |
23-Oct-25 |
18:57 |
563,664 |
|
dumpfve.sys |
10.0.14393.8415 |
23-Oct-25 |
18:57 |
76,696 |
|
fveapibase.dll |
10.0.14393.8415 |
23-Oct-25 |
18:57 |
185,856 |
|
fveapi.dll |
10.0.14393.8415 |
23-Oct-25 |
18:57 |
590,336 |
|
ResetEngine.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
1,439,744 |
|
ResetEngine.exe |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
10,240 |
|
reseteng.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
946,176 |
|
resetengmig.dll |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
64,512 |
|
ResetEngInterfaces.exe |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
8,704 |
|
srms.dat |
未版本控制 |
23-Oct-25 |
18:57 |
56,119 |
|
srms62.dat |
未版本控制 |
23-Oct-25 |
18:57 |
22,841 |
|
sysreset.exe |
6.1.7782.0 |
23-Oct-25 |
18:57 |
595,456 |
|
systemreset.exe |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
321,296 |
|
SysResetErr.exe |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
37,880 |
|
tcpip.sys |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
1,979,872 |
|
FWPKCLNT.SYS |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
293,344 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
112,640 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
121,856 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
126,464 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
119,808 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
127,488 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
126,976 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
110,592 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
125,440 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
125,952 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
115,712 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
121,344 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
124,928 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
107,008 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
122,880 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
130,048 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
124,416 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
88,576 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
86,016 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
117,248 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
119,296 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
133,632 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
120,832 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
123,392 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
118,784 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
116,736 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
77,312 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
18:57 |
77,824 |
|
win32u.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
95,680 |
|
win32k.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
147,968 |
|
win32kfull.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
3,001,856 |
|
win32kbase.sys |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
1,227,776 |
|
WindowsCodecs.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
1,507,288 |
|
winpeshl.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
25,600 |
|
wpeutil.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
105,472 |
|
wpeutil.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
10,752 |
|
wpeinit.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
28,672 |
|
startnet.cmd |
未版本控制 |
23-Oct-25 |
18:57 |
9 |
|
ReInfo.dll |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
167,424 |
|
StartRep.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
670,208 |
|
RecEnv.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
613,312 |
|
BootRec.exe |
10.0.14393.8592 |
23-Oct-25 |
18:57 |
287,744 |
|
文件名 |
文件版本 |
日期 |
时间 |
文件大小 |
|
usbccgp.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
169,936 |
|
usb.inf |
未版本控制 |
23-Oct-25 |
19:12 |
41,928 |
|
USBHUB3.SYS |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
537,576 |
|
usbhub3.inf |
未版本控制 |
23-Oct-25 |
19:12 |
11,152 |
|
usbd.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
33,728 |
|
usbehci.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
97,232 |
|
usbhub.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
502,208 |
|
usbohci.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
30,208 |
|
usbport.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
455,104 |
|
usbuhci.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
35,328 |
|
usbport.inf |
未版本控制 |
23-Oct-25 |
19:12 |
77,554 |
|
skci.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
176,456 |
|
VbsSiPolicy.p7b |
未版本控制 |
23-Oct-25 |
19:12 |
68,351 |
|
winload.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,193,256 |
|
winload.efi |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,387,944 |
|
bootmgfw.efi |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,211,376 |
|
bootmgfw_EX.efi |
10.0.26100.30212 |
23-Oct-25 |
19:12 |
2,830,632 |
|
SecureBootRecovery.efi |
未版本控制 |
23-Oct-25 |
19:12 |
162,688 |
|
bootmgr.efi |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,197,040 |
|
bootmgr_EX.efi |
10.0.26100.30212 |
23-Oct-25 |
19:12 |
2,818,464 |
|
boot.stl |
未版本控制 |
23-Oct-25 |
19:12 |
11,030 |
|
bootux.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
3,753,984 |
|
winresume.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
904,568 |
|
winresume.efi |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,069,312 |
|
BootMenuUX.dll |
10.0.14393.8415 |
23-Oct-25 |
19:12 |
583,680 |
|
bootim.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
25,600 |
|
ci.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
653,152 |
|
driver.stl |
未版本控制 |
23-Oct-25 |
19:12 |
33,360 |
|
fltMgr.sys |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
378,352 |
|
hal.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
453,104 |
|
cmi2migxml.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
177,128 |
|
csiagent.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
663,488 |
|
diagER.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
52,672 |
|
hwcompat.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
207,264 |
|
hwcompat.txt |
未版本控制 |
23-Oct-25 |
19:12 |
2,838 |
|
hwexclude.txt |
未版本控制 |
23-Oct-25 |
19:12 |
2 |
|
migapp.xml |
未版本控制 |
23-Oct-25 |
19:12 |
654,548 |
|
migcore.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
8,291,808 |
|
mighost.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
272,808 |
|
migres.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
17,384 |
|
migisol.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
143,320 |
|
migstore.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,189,352 |
|
migsys.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
386,520 |
|
MXEAgent.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
313,816 |
|
offline.xml |
未版本控制 |
23-Oct-25 |
19:12 |
33,714 |
|
oscomps.xml |
未版本控制 |
23-Oct-25 |
19:12 |
435,175 |
|
oscomps.woa.xml |
未版本控制 |
23-Oct-25 |
19:12 |
249,101 |
|
osfilter.inf |
未版本控制 |
23-Oct-25 |
19:12 |
21,299 |
|
reagent.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,123,816 |
|
setupplatform.cfg |
未版本控制 |
23-Oct-25 |
19:12 |
1,664 |
|
setupplatform.dll |
1.42.14393.8592 |
23-Oct-25 |
19:12 |
7,219,640 |
|
setupplatform.exe |
1.42.14393.8592 |
23-Oct-25 |
19:12 |
166,832 |
|
SFCN.dat |
未版本控制 |
23-Oct-25 |
19:12 |
18:24 |
|
SFLCID.dat |
未版本控制 |
23-Oct-25 |
19:12 |
1,644 |
|
SFLISTW7.dat |
未版本控制 |
23-Oct-25 |
19:12 |
1,703,322 |
|
SFLISTW8.dat |
未版本控制 |
23-Oct-25 |
19:12 |
2,608,968 |
|
SFLISTWB.dat |
未版本控制 |
23-Oct-25 |
19:12 |
3,173,014 |
|
SFLISTWT.dat |
未版本控制 |
23-Oct-25 |
19:12 |
4,935,856 |
|
sflistw8.woa.dat |
未版本控制 |
23-Oct-25 |
19:12 |
954,506 |
|
SFLISTRS1.dat |
未版本控制 |
23-Oct-25 |
19:12 |
5,590,872 |
|
sflistwb.woa.dat |
未版本控制 |
23-Oct-25 |
19:12 |
1,150,204 |
|
sflistwt.woa.dat |
未版本控制 |
23-Oct-25 |
19:12 |
2,637,298 |
|
SFPAT.inf |
未版本控制 |
23-Oct-25 |
19:12 |
11,345 |
|
SFPATW7.inf |
未版本控制 |
23-Oct-25 |
19:12 |
17,117 |
|
SFPATW8.inf |
未版本控制 |
23-Oct-25 |
19:12 |
79,539 |
|
SFPATWB.inf |
未版本控制 |
23-Oct-25 |
19:12 |
91,356 |
|
SFPATWT.inf |
未版本控制 |
23-Oct-25 |
19:12 |
165,630 |
|
SFPATRS1.inf |
未版本控制 |
23-Oct-25 |
19:12 |
169,643 |
|
unbcl.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,099,240 |
|
upgradeagent.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
3,051,928 |
|
upgradeagent.xml |
未版本控制 |
23-Oct-25 |
19:12 |
70,803 |
|
upgrade_bulk.xml |
未版本控制 |
23-Oct-25 |
19:12 |
190,757 |
|
upgrade_data.xml |
未版本控制 |
23-Oct-25 |
19:12 |
31,023 |
|
upgrade_frmwrk.xml |
未版本控制 |
23-Oct-25 |
19:12 |
15,010 |
|
upgWow_bulk.xml |
未版本控制 |
23-Oct-25 |
19:12 |
97,470 |
|
uninstall.xml |
未版本控制 |
23-Oct-25 |
19:12 |
3,187 |
|
uninstall_data.xml |
未版本控制 |
23-Oct-25 |
19:12 |
8,973 |
|
wdsutil.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
291,264 |
|
iertutil.dll |
11.0.14393.8592 |
23-Oct-25 |
19:12 |
2,827,984 |
|
ClipSp.sys |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
683,504 |
|
dxgkrnl.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
2,180,032 |
|
cdd.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
227,328 |
|
dxgmms1.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
403,904 |
|
dxgmms2.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
658,896 |
|
netio.sys |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
469,472 |
|
ntdll.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,883,840 |
|
ntoskrnl.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
7,795,168 |
|
wof.sys |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
200,160 |
|
pdc.sys |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
111,072 |
|
diagtrack.dll |
10.0.10586.0 |
23-Oct-25 |
19:12 |
1,365,856 |
|
diagtrackrunner.exe |
10.0.10586.0 |
23-Oct-25 |
19:12 |
88,256 |
|
ii.admx |
未版本控制 |
23-Oct-25 |
19:12 |
1,240 |
|
reagent.xml |
未版本控制 |
23-Oct-25 |
19:12 |
781 |
|
SetupPlatform.cfg |
未版本控制 |
23-Oct-25 |
19:12 |
7,902 |
|
wdsclientapi.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
276,888 |
|
wdscore.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
250,816 |
|
wdscsl.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
61,376 |
|
wdsimage.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
910,744 |
|
wdstptc.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
654,256 |
|
fvevol.sys |
10.0.14393.8415 |
23-Oct-25 |
19:12 |
654,800 |
|
dumpfve.sys |
10.0.14393.8415 |
23-Oct-25 |
19:12 |
91,728 |
|
fveapibase.dll |
10.0.14393.8415 |
23-Oct-25 |
19:12 |
216,576 |
|
fveapi.dll |
10.0.14393.8415 |
23-Oct-25 |
19:12 |
734,720 |
|
ResetEngine.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,817,600 |
|
ResetEngine.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
11,264 |
|
reseteng.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,082,880 |
|
resetengmig.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
77,312 |
|
ResetEngInterfaces.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
9,728 |
|
srms.dat |
未版本控制 |
23-Oct-25 |
19:12 |
56,119 |
|
srms62.dat |
未版本控制 |
23-Oct-25 |
19:12 |
22,841 |
|
sysreset.exe |
6.1.7782.0 |
23-Oct-25 |
19:12 |
689,152 |
|
systemreset.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
355,416 |
|
SysResetErr.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
43,016 |
|
tcpip.sys |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
2,538,464 |
|
FWPKCLNT.SYS |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
411,144 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
112,640 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
121,856 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
126,464 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
119,808 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
127,488 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
126,976 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
110,592 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
125,440 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
125,952 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
115,712 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
121,344 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
124,928 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
107,008 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
122,880 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
130,048 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
124,416 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
88,576 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
86,016 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
117,248 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
119,296 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
133,632 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
120,832 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
123,392 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
118,784 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
116,736 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
77,312 |
|
tcpip.sys.mui |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
77,824 |
|
win32u.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
115,344 |
|
win32k.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
206,848 |
|
win32kfull.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
3,611,648 |
|
win32kbase.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,498,112 |
|
WindowsCodecs.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,741,752 |
|
winpeshl.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
30,208 |
|
wpeutil.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
121,344 |
|
wpeutil.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
12,800 |
|
wpeinit.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
32,256 |
|
startnet.cmd |
未版本控制 |
23-Oct-25 |
19:12 |
9 |
|
ReAgent.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,123,776 |
|
ReInfo.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
193,536 |
|
StartRep.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
759,296 |
|
RecEnv.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
708,544 |
|
BootRec.exe |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
335,360 |
|
ntdll.dll |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,571,832 |
|
win32u.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
80,664 |
|
win32k.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
147,968 |
|
win32kfull.sys |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
3,001,856 |
|
WindowsCodecs.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
1,507,288 |
|
wdsnbp.com |
未版本控制 |
23-Oct-25 |
19:12 |
30,832 |
|
abortpxe.com |
未版本控制 |
23-Oct-25 |
19:12 |
79 |
|
bootmgr.exe |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
636,384 |
|
pxeboot.com |
未版本控制 |
23-Oct-25 |
19:12 |
25,358 |
|
pxeboot.n12 |
未版本控制 |
23-Oct-25 |
19:12 |
25,358 |
|
hdlscom1.com |
未版本控制 |
23-Oct-25 |
19:12 |
25,662 |
|
hdlscom2.com |
未版本控制 |
23-Oct-25 |
19:12 |
25,662 |
|
hdlscom1.n12 |
未版本控制 |
23-Oct-25 |
19:12 |
25,646 |
|
hdlscom2.n12 |
未版本控制 |
23-Oct-25 |
19:12 |
25,646 |
|
bootmgfw.efi |
10.0.14393.8243 |
23-Oct-25 |
19:12 |
1,016,312 |
|
bootmgfw_EX.efi |
10.0.26100.30212 |
23-Oct-25 |
19:12 |
2,376,464 |
|
iertutil.dll |
11.0.14393.8592 |
23-Oct-25 |
19:12 |
2,329,008 |
|
ReAgent.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
972,224 |
|
ReInfo.dll |
10.0.14393.8592 |
23-Oct-25 |
19:12 |
167,424 |
参考资料
查询字词: safeos du