Windows 安全启动证书过期
重要提示: 大多数 Windows 设备使用的安全启动证书从 2026 年 6 月开始过期。 若未能及时更新,这可能会影响某些个人和企业设备安全启动的能力。 为避免中断,建议查看指南并提前采取措施更新证书。
有关 Windows 设备的详细信息和准备步骤,请参阅Windows 安全启动证书过期和 CA 更新。
有关 Windows 服务器的详细信息和准备步骤,请参阅以下资源:
摘要
此更新改进了 Windows 恢复环境 (WinRE) 。
如何获取此更新
安装此更新
若要安装此更新,请使用以下发布频道之一。
|
可用 |
后续步骤 |
|
|
可以通过 Windows 更新获取此更新。 此更新会自动下载并安装。 |
|
可用 |
后续步骤 |
|
|
若要获取此更新的独立包,请转到 Microsoft更新目录 网站。 若要从更新目录下载更新,请参阅 从 Windows 更新目录下载更新的步骤。 若要手动安装此更新,请参阅将更新包添加到Windows RE。 |
|
可用 |
后续步骤 |
|
|
如果按如下所示配置产品和分类,此更新将自动与 Windows Server Update Services (WSUS) 同步:
|
|
先决条件 |
应用此更新没有任何先决条件。 |
|
重启信息 |
应用此更新后,无需重新启动您的设备。 |
|
删除信息 |
应用到 Windows 映像后,无法删除此更新。 |
|
更新替代信息 |
此更新不会替换任何以前发布的更新。 |
|
验证此更新的安装 |
安装此更新后,设备上安装的 WinRE 版本应为 10.0.28000.1574。 |
若要获取安装的 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。
文件信息
此软件更新的英语(美国)版本会安装具有以下属性的文件。 此更新可能包含其他语言的文件。
|
文件名 |
文件版本 |
日期 |
时间 |
文件大小 |
|
hvloader.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
251,296 |
|
hvax64.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,205,128 |
|
hvix64.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,352,544 |
|
driver.stl |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
33,360 |
|
previous.driver.stl |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
33,360 |
|
kdnet.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
157,128 |
|
kdstub.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
87,456 |
|
bfsvc.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
126,976 |
|
bootsvc.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
315,496 |
|
driversipolicy.p7b |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
238,709 |
|
dxgkrnl.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
5,346,720 |
|
cdd.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
335,872 |
|
dxgmms1.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
538,016 |
|
dxgmms2.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,291,720 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
116,224 |
|
dxgmms2.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
5,120 |
|
cdd.dll.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
3,072 |
|
dxgmms2.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
5,632 |
|
cdd.dll.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,560 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
116,736 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
117,248 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
115,712 |
|
dxgmms2.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
4,608 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
115,200 |
|
Narrator.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,171,456 |
|
DetailedReading-Default.xml |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
3,944 |
|
Narrator.lnk |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
1,108 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
24,064 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
28,672 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
28,160 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
27,648 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
26,624 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
29,696 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
30,208 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
29,184 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
22,528 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
26,112 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
16,896 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
16,384 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
27,136 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
13,312 |
|
windows.storage.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
8,972,112 |
|
ntoskrnl.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
13,813,152 |
|
ntkrla57.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
12,481,952 |
|
bfsvc.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
337,312 |
|
securebootai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
505,248 |
|
fveupdateai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
120,224 |
|
bcd.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
175,008 |
|
hwreqchk.dll |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
443,808 |
|
ServicingCommon.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
927,032 |
|
utcapi.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
66,976 |
|
wimgapi.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
935,328 |
|
wdscommonlib.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
337,312 |
|
dismapi.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,209,760 |
|
dismcore.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
533,920 |
|
dismcoreps.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
243,104 |
|
dismprov.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
300,488 |
|
deployprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
718,240 |
|
folderprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
95,648 |
|
imagingprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
251,296 |
|
logprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
189,856 |
|
osimageprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
566,688 |
|
UpdateCompression.dll |
5.0.1.1 |
26 年 2 月 5 日 |
2,147 |
529,864 |
|
vhdprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
599,456 |
|
wimprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
701,896 |
|
unattend.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
357,792 |
|
wpx.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,426,848 |
|
locale.nls |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
862,800 |
|
nlsbres.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
103,880 |
|
schannel.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
770,048 |
|
win32u.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
170,944 |
|
win32k.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
816,544 |
|
win32kfull.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
4,345,856 |
|
win32kbase.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
3,395,584 |
|
win32kbase_rs.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
176,128 |
|
winpeshl.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
90,112 |
|
wpeutil.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
204,800 |
|
wpeutil.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
32,768 |
|
wpeinit.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
61,440 |
|
startnet.cmd |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
9 |
|
winsqlite3.dll |
3.51.1.0 |
26 年 2 月 5 日 |
2,147 |
1,144,584 |
|
windows.storage.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
7,220,240 |
|
schannel.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
553,472 |
|
win32u.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
106,432 |
|
winsqlite3.dll |
3.51.1.0 |
26 年 2 月 5 日 |
2,147 |
894,208 |
|
bfsvc.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
256,456 |
|
securebootai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
398,280 |
|
fveupdateai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
79,264 |
|
文件名 |
文件版本 |
日期 |
时间 |
文件大小 |
|
driver.stl |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
15,113 |
|
previous.driver.stl |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
15,113 |
|
kdnet.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
117,664 |
|
kdstub.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
50,592 |
|
bfsvc.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
110,080 |
|
bootsvc.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
494,448 |
|
driversipolicy.p7b |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
238,709 |
|
dxgkrnl.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
5,070,752 |
|
cdd.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
286,208 |
|
dxgmms1.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
459,680 |
|
dxgmms2.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,163,680 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
116,224 |
|
dxgmms2.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
5,120 |
|
cdd.dll.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
3,072 |
|
dxgmms2.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
5,632 |
|
cdd.dll.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,560 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
116,736 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
117,248 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
115,712 |
|
dxgmms2.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
4,608 |
|
dxgkrnl.sys.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
115,200 |
|
Narrator.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,277,440 |
|
DetailedReading-Default.xml |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
3,944 |
|
Narrator.lnk |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
1,108 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
24,064 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
28,672 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
28,160 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
27,648 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
26,624 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
29,696 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
30,208 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
29,184 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
22,528 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
26,112 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
16,896 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
16,384 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
27,136 |
|
Narrator.exe.mui |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
13,312 |
|
windows.storage.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
19,163,888 |
|
ntoskrnl.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
12,151,200 |
|
bfsvc.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
316,832 |
|
securebootai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
494,496 |
|
fveupdateai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
103,328 |
|
bcd.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
150,912 |
|
hwreqchk.dll |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
806,816 |
|
ServicingCommon.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,632,832 |
|
utcapi.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
46,496 |
|
wimgapi.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,613,728 |
|
wdscommonlib.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
315,336 |
|
dismapi.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,157,984 |
|
dismcore.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
870,816 |
|
dismcoreps.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
227,232 |
|
dismprov.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
296,352 |
|
deployprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,233,312 |
|
folderprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
162,720 |
|
imagingprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
470,432 |
|
logprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
178,632 |
|
osimageprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,033,120 |
|
UpdateCompression.dll |
5.0.1.1 |
26 年 2 月 5 日 |
2,147 |
909,216 |
|
vhdprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,115,080 |
|
wimprovider.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,296,288 |
|
unattend.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
333,216 |
|
wpx.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,553,312 |
|
locale.nls |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
862,800 |
|
nlsbres.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
94,664 |
|
schannel.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,285,120 |
|
win32u.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
381,304 |
|
win32k.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
703,392 |
|
win32kfull.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
4,025,856 |
|
win32kbase.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
3,188,224 |
|
win32kbase_rs.sys |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
130,560 |
|
winpeshl.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
69,632 |
|
wpeutil.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
186,368 |
|
wpeutil.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
15,872 |
|
wpeinit.exe |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
39,424 |
|
startnet.cmd |
未版本控制 |
26 年 2 月 5 日 |
2,147 |
9 |
|
winsqlite3.dll |
3.51.1.0 |
26 年 2 月 5 日 |
2,147 |
2,147,592 |
|
d2d1.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
7,023,072 |
|
d3d9on12.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
913,920 |
|
d3d10warp.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
7,362,616 |
|
d3d11.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
3,243,344 |
|
d3d11on12.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
814,280 |
|
d3d12.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
174,912 |
|
DWrite.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,957,824 |
|
gdi32.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
325,856 |
|
iertutil.dll |
11.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,740,408 |
|
jscript9.dll |
11.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
6,452,224 |
|
msftedit.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
4,264,448 |
|
mshtml.dll |
11.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
28,077,056 |
|
msIso.dll |
11.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
381,440 |
|
opengl32.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
1,304,064 |
|
urlmon.dll |
11.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,319,360 |
|
windows.storage.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
12,363,888 |
|
WindowsCodecs.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
2,857,672 |
|
wininet.dll |
11.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
3,076,088 |
|
windows.storage.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
7,220,240 |
|
schannel.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
553,472 |
|
win32u.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
106,432 |
|
winsqlite3.dll |
3.51.1.0 |
26 年 2 月 5 日 |
2,147 |
894,208 |
|
bfsvc.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
256,456 |
|
securebootai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
398,280 |
|
fveupdateai.dll |
10.0.28000.1574 |
26 年 2 月 5 日 |
2,147 |
79,264 |
参考资料
查询字词: safeos du