KB5075915: Safe OS Dynamic update for Windows Server 2022: February 10, 2026

Applies To
Windows Server 2022

Note

  • Windows Secure Boot certificate expiration
  • Important: Secure Boot certificates used by most Windows devices are set to expire starting in June 2026. Microsoft has been updating these certificates on consumer and non-managed business devices for the past months. Devices that haven’t received the newer certificates will continue to start and operate normally, and standard Windows updates will continue to install. We will continue to install the newer certificates via Windows updates in the coming months.
  • You can check your PC status on the Windows Security app. If you are an IT administrator, follow the guidance on the Secure Boot Playbook for Windows clients and Windows Server.
End of support information

Note

  • Support for Windows Server 2022 will end in October 2031
  • After October 14, 2031, Microsoft will no longer provide free software updates from Windows Update, technical assistance, or security fixes for Windows Server 2022. We recommend that you upgrade to a later version of Windows Server.

Summary

This update makes improvements to the Windows recovery environment (WinRE).

How to get this update

Install this update

To install this update, use one of the following release channels.


Available Next step
Available This update is available through Windows Update. It will be downloaded and installed automatically.
Prerequisites There are no prerequisites to apply this update.
Restart information You do not have to restart your device after you apply this update.
Removal information This update cannot be removed once it is applied to a Windows image.
Update replacement information This update replaces the previously released update KB5075040.
Verify the installation of this update After installing this update, the WinRE version installed on the device should be 10.0.20348.4762.
Methods to verify the WinRE version installed

Run the following PowerShell script "GetWinReVersion.ps1" with Administrator credentials. After you run the script, you should receive the installed WinRE version as in the following example:

GetWinREVersion Screenshot

GetWinReVersion.ps1 PowerShell script


################################################################################################

#

# 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

File information

The English (United States) version of this software update installs files that have the following attributes. This update might contain files for additional languages.

For all supported x64-based versions
File name File version Date Time File size
usb.inf Not versioned 17-Jan-26 16:07 41,484
usbccgp.sys 10.0.20348.4762 17-Jan-26 16:07 222,624
usbhub3.inf Not versioned 17-Jan-26 16:07 11,162
USBHUB3.SYS 10.0.20348.4762 17-Jan-26 16:07 697,760
usbport.inf Not versioned 17-Jan-26 16:07 77,558
usbohci.sys 10.0.20348.4762 17-Jan-26 16:07 61,440
usbport.sys 10.0.20348.4762 17-Jan-26 16:07 505,248
usbhub.sys 10.0.20348.4762 17-Jan-26 16:07 554,400
usbehci.sys 10.0.20348.4762 17-Jan-26 16:07 116,128
usbuhci.sys 10.0.20348.4762 17-Jan-26 16:07 69,632
usbd.sys 10.0.20348.4762 17-Jan-26 16:07 66,976
skci.dll 10.0.20348.4762 17-Jan-26 16:07 315,536
conhost.exe 10.0.20348.4762 17-Jan-26 16:07 987,136
iumbase.dll 10.0.20348.4762 17-Jan-26 16:07 46,944
iumdll.dll 10.0.20348.4762 17-Jan-26 16:07 38,720
vertdll.dll 10.0.20348.4762 17-Jan-26 16:07 199,864
ucrtbase_enclave.dll 10.0.20348.4762 17-Jan-26 16:07 563,480
securekernel.exe 10.0.20348.4762 17-Jan-26 16:07 1,070,496
VbsSiPolicy.p7b Not versioned 17-Jan-26 16:07 81,434
advapi32.dll 10.0.20348.4762 17-Jan-26 16:07 129,552
comctl32.dll 10.0.20348.4762 17-Jan-26 16:07 57,344
comdlg32.dll 10.0.20348.4762 17-Jan-26 16:07 45,056
cryptui.dll 10.0.20348.4762 17-Jan-26 16:07 40,960
dwmapi.dll 10.0.20348.4762 17-Jan-26 16:07 63,448
dxcore.dll 10.0.20348.4762 17-Jan-26 16:07 28,672
fontsub.dll 10.0.20348.4762 17-Jan-26 16:07 28,672
gdi32.dll 10.0.20348.4762 17-Jan-26 16:07 137,824
imm32.dll 10.0.20348.4762 17-Jan-26 16:07 59,312
kernel32.dll 10.0.20348.4762 17-Jan-26 16:07 191,536
ole32.dll 10.0.20348.4762 17-Jan-26 16:07 129,560
oleacc.dll 10.0.20348.4762 17-Jan-26 16:07 40,960
PerceptionDevice.dll 10.0.20348.4762 17-Jan-26 16:07 36,864
psapi.dll 10.0.20348.4762 17-Jan-26 16:07 42,784
rstrtmgr.dll 10.0.20348.4762 17-Jan-26 16:07 40,960
setupapi.dll 10.0.20348.4762 17-Jan-26 16:07 117,200
user32.dll 10.0.20348.4762 17-Jan-26 16:07 402,272
usp10.dll 10.0.20348.4762 17-Jan-26 16:07 40,960
secur32.dll 10.0.20348.4762 17-Jan-26 16:07 45,056
shell32.dll 10.0.20348.4762 17-Jan-26 16:07 121,296
shlwapi.dll 10.0.20348.4762 17-Jan-26 16:07 121,296
version.dll 10.0.20348.4762 17-Jan-26 16:07 32,768
wevtapi.dll 10.0.20348.4762 17-Jan-26 16:07 63,488
winmm.dll 10.0.20348.4762 17-Jan-26 16:07 86,016
winspool.drv 10.0.20348.4762 17-Jan-26 16:07 61,440
prntvpt.dll 10.0.20348.4762 17-Jan-26 16:07 40,960
wtsapi32.dll 10.0.20348.4762 17-Jan-26 16:07 59,312
xinput1_4.dll 10.0.20348.4762 17-Jan-26 16:07 40,960
winresume.exe 10.0.20348.4762 17-Jan-26 16:07 1,282,608
winresume.efi 10.0.20348.4762 17-Jan-26 16:07 1,956,120
winload.exe 10.0.20348.4762 17-Jan-26 16:07 1,647,240
winload.efi 10.0.20348.4762 17-Jan-26 16:07 2,396,744
bootmgfw.efi 10.0.20348.4762 17-Jan-26 16:07 2,044,360
bootmgfw_EX.efi 10.0.26100.30212 17-Jan-26 16:07 2,830,632
SecureBootRecovery.efi Not versioned 17-Jan-26 16:07 162,688
bootmgr.efi 10.0.20348.4762 17-Jan-26 16:07 2,027,976
bootmgr_EX.efi 10.0.26100.30212 17-Jan-26 16:07 2,818,464
boot.stl Not versioned 17-Jan-26 16:07 11,030
winsipolicy.p7b Not versioned 17-Jan-26 16:07 9,796
bcrypt.dll 10.0.20348.4762 17-Jan-26 16:07 170,904
bcryptprimitives.dll 10.0.20348.4762 17-Jan-26 16:07 534,520
BootMenuUX.dll 10.0.20348.4762 17-Jan-26 16:07 229,376
driversipolicy.p7b Not versioned 17-Jan-26 16:07 229,162
cng.sys 10.0.20348.4762 17-Jan-26 16:07 782,416
ci.dll 10.0.20348.4762 17-Jan-26 16:07 968,352
driver.stl Not versioned 17-Jan-26 16:07 33,360
cryptbase.dll 10.0.20348.4762 17-Jan-26 16:07 59,376
cryptsp.dll 10.0.20348.4762 17-Jan-26 16:07 121,320
cmi2migxml.dll 10.0.20348.4762 17-Jan-26 16:07 230,816
csiagent.dll 10.0.20348.4762 17-Jan-26 16:07 718,280
diagER.dll 10.0.20348.4762 17-Jan-26 16:07 79,264
hwcompat.dll 10.0.20348.4762 17-Jan-26 16:07 251,296
hwcompat.txt Not versioned 17-Jan-26 16:07 780,048
hwexclude.txt Not versioned 17-Jan-26 16:07 51
migapp.xml Not versioned 17-Jan-26 16:07 654,548
migcore.dll 10.0.20348.4762 17-Jan-26 16:07 9,741,768
mighost.exe 10.0.20348.4762 17-Jan-26 16:07 280,008
migres.dll 10.0.20348.4762 17-Jan-26 16:07 26,016
migisol.dll 10.0.20348.4762 17-Jan-26 16:07 148,896
migstore.dll 10.0.20348.4762 17-Jan-26 16:07 1,320,352
migsys.dll 10.0.20348.4762 17-Jan-26 16:07 456,096
MXEAgent.dll 10.0.20348.4762 17-Jan-26 16:07 374,216
offline.xml Not versioned 17-Jan-26 16:07 40,820
oscomps.xml Not versioned 17-Jan-26 16:07 435,175
oscomps.woa.xml Not versioned 17-Jan-26 16:07 249,101
osfilter.inf Not versioned 17-Jan-26 16:07 21,299
pnppropmig.dll 10.0.20348.4762 17-Jan-26 16:07 103,840
reagent.dll 10.0.20348.4762 17-Jan-26 16:07 759,200
ReserveManager.dll 10.0.20348.4762 17-Jan-26 16:07 296,352
setupplatform.cfg Not versioned 17-Jan-26 16:07 6,371
setupplatform.dll 1.64.20348.4762 17-Jan-26 16:07 9,278,920
setupplatform.exe 1.64.20348.4762 17-Jan-26 16:07 202,184
SFCN.dat Not versioned 17-Jan-26 16:07 1,824
SFLCID.dat Not versioned 17-Jan-26 16:07 1,644
SFLISTW7.dat Not versioned 17-Jan-26 16:07 1,703,368
SFLISTW8.dat Not versioned 17-Jan-26 16:07 2,608,858
SFLISTWB.dat Not versioned 17-Jan-26 16:07 3,172,904
SFLISTWT.dat Not versioned 17-Jan-26 16:07 4,935,438
sflistw8.woa.dat Not versioned 17-Jan-26 16:07 954,436
SFLISTRS1.dat Not versioned 17-Jan-26 16:07 5,593,408
sflistwb.woa.dat Not versioned 17-Jan-26 16:07 1,150,134
sflistwt.woa.dat Not versioned 17-Jan-26 16:07 2,636,850
SFPAT.inf Not versioned 17-Jan-26 16:07 11,602
SFPATW7.inf Not versioned 17-Jan-26 16:07 17,396
SFPATW8.inf Not versioned 17-Jan-26 16:07 79,818
SFPATWB.inf Not versioned 17-Jan-26 16:07 91,635
SFPATWT.inf Not versioned 17-Jan-26 16:07 165,729
SFPATRS1.inf Not versioned 17-Jan-26 16:07 169,870
unbcl.dll 10.0.20348.4762 17-Jan-26 16:07 1,205,664
upgradeagent.dll 10.0.20348.4762 17-Jan-26 16:07 3,286,432
upgradeagent.xml Not versioned 17-Jan-26 16:07 70,907
upgrade_comp.xml Not versioned 17-Jan-26 16:07 6,054
upgrade_bulk.xml Not versioned 17-Jan-26 16:07 211,052
upgrade_data.xml Not versioned 17-Jan-26 16:07 41,750
upgrade_frmwrk.xml Not versioned 17-Jan-26 16:07 18,614
upgWow_bulk.xml Not versioned 17-Jan-26 16:07 114,963
uninstall.xml Not versioned 17-Jan-26 16:07 4,407
uninstall_data.xml Not versioned 17-Jan-26 16:07 11,122
wdsutil.dll 10.0.20348.4762 17-Jan-26 16:07 353,736
iertutil.dll 11.0.20348.4762 17-Jan-26 16:07 2,856,680
msIso.dll 11.0.20348.4762 17-Jan-26 16:07 290,816
edgeIso.dll 11.0.20348.4762 17-Jan-26 16:07 487,424
kernel32.dll 10.0.20348.4762 17-Jan-26 16:07 782,480
KernelBase.dll 10.0.20348.4762 17-Jan-26 16:07 3,637,688
ClipSp.sys 10.0.20348.4762 17-Jan-26 16:07 1,127,840
dxgkrnl.sys 10.0.20348.4762 17-Jan-26 16:07 4,527,520
cdd.dll 10.0.20348.4762 17-Jan-26 16:07 270,336
dxgmms1.sys 10.0.20348.4762 17-Jan-26 16:07 521,632
dxgmms2.sys 10.0.20348.4762 17-Jan-26 16:07 1,050,016
dxgkrnl.sys.mui 10.0.20348.4762 17-Jan-26 16:07 109,056
dxgmms2.sys.mui 10.0.20348.4762 17-Jan-26 16:07 5,120
dxgmms2.sys.mui 10.0.20348.4762 17-Jan-26 16:07 5,632
dxgkrnl.sys.mui 10.0.20348.4762 17-Jan-26 16:07 110,592
dxgkrnl.sys.mui 10.0.20348.4762 17-Jan-26 16:07 110,080
dxgkrnl.sys.mui 10.0.20348.4762 17-Jan-26 16:07 108,032
dxgmms2.sys.mui 10.0.20348.4762 17-Jan-26 16:07 4,608
dxgkrnl.sys.mui 10.0.20348.4762 17-Jan-26 16:07 107,520
lsasrv.dll 10.0.20348.4762 17-Jan-26 16:07 1,638,400
lsaadt.dll 10.0.20348.4762 17-Jan-26 16:07 217,088
ksecpkg.sys 10.0.20348.4762 17-Jan-26 16:07 214,472
offlinelsa.dll 10.0.20348.4762 17-Jan-26 16:07 157,128
msasn1.dll 10.0.20348.4762 17-Jan-26 16:07 84,168
msvcrt.dll 7.0.20348.4762 17-Jan-26 16:07 675,008
netio.sys 10.0.20348.4762 17-Jan-26 16:07 656,840
ntdll.dll 10.0.20348.4762 17-Jan-26 16:07 2,108,808
windows.storage.dll 10.0.20348.4762 17-Jan-26 16:07 8,736,544
ntoskrnl.exe 10.0.20348.4762 17-Jan-26 16:07 11,584,928
ntkrla57.exe 10.0.20348.4762 17-Jan-26 16:07 11,101,640
rpcrt4.dll 10.0.20348.4762 17-Jan-26 16:07 1,195,640
diagtrack.dll 10.0.10586.0 17-Jan-26 16:07 1,365,856
diagtrackrunner.exe 10.0.10586.0 17-Jan-26 16:07 88,256
reagent.admx Not versioned 17-Jan-26 16:07 1,240
reagent.xml Not versioned 17-Jan-26 16:07 837
SetupPlatform.cfg Not versioned 17-Jan-26 16:07 11,803
wdsclientapi.dll 10.0.20348.4762 17-Jan-26 16:07 334,200
wdscore.dll 10.0.20348.4762 17-Jan-26 16:07 279,968
wdscsl.dll 10.0.20348.4762 17-Jan-26 16:07 91,552
wdsimage.dll 10.0.20348.4762 17-Jan-26 16:07 1,038,712
wdstptc.dll 10.0.20348.4762 17-Jan-26 16:07 727,416
fvevol.sys 10.0.20348.4762 17-Jan-26 16:07 861,600
dumpfve.sys 10.0.20348.4762 17-Jan-26 16:07 129,560
KerbClientShared.dll 10.0.20348.4762 17-Jan-26 16:07 237,016
sechost.dll 10.0.20348.4762 17-Jan-26 16:07 675,048
fveapibase.dll 10.0.20348.4762 17-Jan-26 16:07 450,560
fveapi.dll 10.0.20348.4762 17-Jan-26 16:07 1,093,632
NtlmShared.dll 10.0.20348.4762 17-Jan-26 16:07 67,600
schannel.dll 10.0.20348.4762 17-Jan-26 16:07 671,744
ResetEngine.dll 10.0.20348.4762 17-Jan-26 16:07 2,299,296
ResetEngine.exe 10.0.20348.4762 17-Jan-26 16:07 38,304
ResetPluginHost.exe 10.0.20348.4762 17-Jan-26 16:07 53,248
reseteng.dll 10.0.20348.4762 17-Jan-26 16:07 679,936
resetengmig.dll 10.0.20348.4762 17-Jan-26 16:07 106,496
srms.dat Not versioned 17-Jan-26 16:07 59,554
srms62.dat Not versioned 17-Jan-26 16:07 22,841
sysreset.exe 10.0.20348.4762 17-Jan-26 16:07 372,736
systemreset.exe 10.0.20348.4762 17-Jan-26 16:07 538,624
ResetEngOnline.dll 10.0.20348.4762 17-Jan-26 16:07 221,184
SysResetErr.exe 10.0.20348.4762 17-Jan-26 16:07 71,112
tcpip.sys 10.0.20348.4762 17-Jan-26 16:07 3,216,840
FWPKCLNT.SYS 10.0.20348.4762 17-Jan-26 16:07 542,112
tcpipreg.sys 10.0.20348.4762 17-Jan-26 16:07 77,824
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 207,872
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 212,992
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 209,920
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 209,408
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 210,944
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 211,968
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 206,336
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 205,312
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 211,456
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 200,704
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 200,192
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 208,384
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 208,896
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 207,360
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 210,432
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 198,144
tcpip.sys.mui 10.0.20348.4762 17-Jan-26 16:07 198,656
tbs.dll 10.0.20348.4762 17-Jan-26 16:07 125,448
tbs.sys 10.0.20348.4762 17-Jan-26 16:07 71,072
ucrtbase.dll 10.0.20348.4762 17-Jan-26 16:07 1,129,568
msvcp_win.dll 10.0.20348.4762 17-Jan-26 16:07 662,648
nsi.dll 10.0.20348.4762 17-Jan-26 16:07 46,944
winnsi.dll 10.0.20348.4762 17-Jan-26 16:07 59,312
nsisvc.dll 10.0.20348.4762 17-Jan-26 16:07 57,344
nsiproxy.sys 10.0.20348.4762 17-Jan-26 16:07 73,728
ws2_32.dll 10.0.20348.4762 17-Jan-26 16:07 476,672
win32u.dll 10.0.20348.4762 17-Jan-26 16:07 166,808
win32k.sys 10.0.20348.4762 17-Jan-26 16:07 684,032
win32kfull.sys 10.0.20348.4762 17-Jan-26 16:07 3,829,760
win32kbase.sys 10.0.20348.4762 17-Jan-26 16:07 2,895,872
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 19,968
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 22,528
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 21,504
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 23,040
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 20,480
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 20,992
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 19,456
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 22,016
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 17,408
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 16,896
win32kbase.sys.mui 10.0.20348.4762 17-Jan-26 16:07 15,360
WindowsCodecs.dll 10.0.20348.4762 17-Jan-26 16:07 1,782,400
winpeshl.exe 10.0.20348.4762 17-Jan-26 16:07 90,112
wpeutil.dll 10.0.20348.4762 17-Jan-26 16:07 159,744
wpeutil.exe 10.0.20348.4762 17-Jan-26 16:07 32,768
wpeinit.exe 10.0.20348.4762 17-Jan-26 16:07 57,344
startnet.cmd Not versioned 17-Jan-26 16:07 9
ReAgent.dll 10.0.20348.4762 17-Jan-26 16:07 759,240
ReInfo.dll 10.0.20348.4762 17-Jan-26 16:07 61,440
StartRep.exe 10.0.20348.4762 17-Jan-26 16:07 647,168
RecEnv.exe 10.0.20348.4762 17-Jan-26 16:07 423,368
BootRec.exe 10.0.20348.4762 17-Jan-26 16:07 192,512
winsqlite3.dll 3.51.1.0 17-Jan-26 16:07 1,079,048
bcrypt.dll 10.0.20348.4762 17-Jan-26 16:07 99,208
bcryptprimitives.dll 10.0.20348.4762 17-Jan-26 16:07 409,720
cryptbase.dll 10.0.20348.4762 17-Jan-26 16:07 33,192
cryptsp.dll 10.0.20348.4762 17-Jan-26 16:07 84,312
iertutil.dll 11.0.20348.4762 17-Jan-26 16:07 2,294,904
msIso.dll 11.0.20348.4762 17-Jan-26 16:07 217,600
edgeIso.dll 11.0.20348.4762 17-Jan-26 16:07 403,968
kernel32.dll 10.0.20348.4762 17-Jan-26 16:07 641,928
KernelBase.dll 10.0.20348.4762 17-Jan-26 16:07 2,437,472
offlinelsa.dll 10.0.20348.4762 17-Jan-26 16:07 118,176
msasn1.dll 10.0.20348.4762 17-Jan-26 16:07 52,240
msvcrt.dll 7.0.20348.4762 17-Jan-26 16:07 788,248
ntdll.dll 10.0.20348.4762 17-Jan-26 16:07 1,722,664
windows.storage.dll 10.0.20348.4762 17-Jan-26 16:07 6,700,664
rpcrt4.dll 10.0.20348.4762 17-Jan-26 16:07 771,224
KerbClientShared.dll 10.0.20348.4762 17-Jan-26 16:07 155,032
sechost.dll 10.0.20348.4762 17-Jan-26 16:07 508,880
fveapibase.dll 10.0.20348.4762 17-Jan-26 16:07 365,568
fveapi.dll 10.0.20348.4762 17-Jan-26 16:07 842,240
NtlmShared.dll 10.0.20348.4762 17-Jan-26 16:07 37,280
schannel.dll 10.0.20348.4762 17-Jan-26 16:07 527,360
tbs.dll 10.0.20348.4762 17-Jan-26 16:07 80,144
ucrtbase.dll 10.0.20348.4762 17-Jan-26 16:07 1,128,096
msvcp_win.dll 10.0.20348.4762 17-Jan-26 16:07 509,912
nsi.dll 10.0.20348.4762 17-Jan-26 16:07 21,784
winnsi.dll 10.0.20348.4762 17-Jan-26 16:07 31,120
ws2_32.dll 10.0.20348.4762 17-Jan-26 16:07 411,256
win32u.dll 10.0.20348.4762 17-Jan-26 16:07 102,336
win32k.sys 10.0.20348.4762 17-Jan-26 16:07 370,176
win32kfull.sys 10.0.20348.4762 17-Jan-26 16:07 2,790,400
WindowsCodecs.dll 10.0.20348.4762 17-Jan-26 16:07 1,449,384
ReAgent.dll 10.0.20348.4762 17-Jan-26 16:07 633,288
ReInfo.dll 10.0.20348.4762 17-Jan-26 16:07 30,208
winsqlite3.dll 3.51.1.0 17-Jan-26 16:07 889,648
wdsnbp.com Not versioned 17-Jan-26 16:07 30,832
abortpxe.com Not versioned 17-Jan-26 16:07 79
bootmgr.exe 10.0.20348.4762 17-Jan-26 16:07 721,824
pxeboot.com Not versioned 17-Jan-26 16:07 25,358
pxeboot.n12 Not versioned 17-Jan-26 16:07 25,358
hdlscom1.com Not versioned 17-Jan-26 16:07 25,662
hdlscom2.com Not versioned 17-Jan-26 16:07 25,662
hdlscom1.n12 Not versioned 17-Jan-26 16:07 25,646
hdlscom2.n12 Not versioned 17-Jan-26 16:07 25,646
bootmgfw.efi 10.0.20348.4762 17-Jan-26 16:07 1,386,952
bootmgfw_EX.efi 10.0.26100.30212 17-Jan-26 16:07 2,376,464

References

Description of the standard terminology that is used to describe Microsoft software updates

Query words: safeos du