Windows Secure Boot certificate expirationÂ
Important: Secure Boot certificates used by most Windows devices are set to expire starting in June 2026. This might affect the ability of certain personal and business devices to boot securely if not updated in time. To avoid disruption, we recommend reviewing the guidance and taking action to update certificates in advance. For details and preparation steps, see Windows Secure Boot certificate expiration and CA updates.
Support for Windows 10 has ended on October 14, 2025
After October 14, 2025, Microsoft will no longer provide free software updates from Windows Update, technical assistance, or security fixes for Windows 10. Your PC will still work, but we recommend moving to Windows 11.​​​​​​​​​​​​​​​​​​​​​
Summary
This update makes improvements to the Windows recovery environment (WinRE) in Windows 10, version 1607 and Windows Server 2016.
How to get this update
Install this update
To install this update, use one of the following release channels.
| 
                           Available  | 
                        
                           Next step  | 
                      
| 
                           
                               | 
                        
                           This update is available through Windows Update. It will be downloaded and installed automatically.  | 
                      
| 
                           Available  | 
                        
                           Next step  | 
                      
| 
                           
                               | 
                        
                           To get the standalone package for this update, go to the Microsoft Update Catalog website. To download updates from the Update Catalog, see Steps to download updates from the Windows Update Catalog. To manually install this update, see Add an update package to Windows RE.  | 
                      
| 
                           Available  | 
                        
                           Next step  | 
                      
| 
                           | 
                        
                           For Windows 10, version 1607 See the other release channels.  | 
                      
| 
                           
                               | 
                        
                           For Windows Server 2016 See the other release channels.  | 
                      
| 
                   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 KB5062689.  | 
              
| 
                   Verify the installation of this update  | 
                
                   After installing this update, the WinRE version installed on the device should be 10.0.14393.8415.  | 
              
To get the version of WinRE 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.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
                      
                    
                  WinREAgent logs events related to the Windows Recovery Environment (WinRE), primarily recording details about the creation, modification, and usage of the recovery image. In this case, we are looking for Event ID: 4501Â Servicing succeeded events. If you are unsuccessful in locating WinREAgent servicing events because of space limitations that might occur in your environment, we suggest you use the DISM command.Â
- 
                  
Open the Windows Search bar. To do this, right-click Start and then click Search.
 - 
                  
In the Search bar, type Event Viewer and then click Event Viewer.
 - 
                  
Expand Windows Logs and then click System.
 - 
                  
In the right-side navigation pane, under Actions, click Find.
 - 
                  
In the Find what: box, type WinREAgent and then click Find Next.
 - 
                  
Click Cancel to close the Find dialog box. The WinREAgent servicing event should be shown in the bottom middle pane and you should see a message similar to the followng on the General tab:
Servicing succeeded. The Windows Recovery Environment version is now: 10.0.22621.4742
The WinRE version in this example is 10.0.22621.4742.
 - 
                  
​​​​​​​To view the Event Properties pane for the WinREAgent servicing event, right-click the WinREAgent entry in the System pane (top middle pane) and then click Event Properties. ​​​​​​​
 
- 
                  
Open an elevated Windows command prompt. To do this, press the Windows key, type cmd, right-click Command Prompt, and then click Run as Administrator.
 - 
                  
At the command prompt, type reagentc /info and then press Enter.
 - 
                  
Note the path of the Windows RE location. For this example, the location is \\?\GLOBALROOT\device\harddisk0\partition5\Recovery\WindowsRE. This path may vary based on your Windows installation.
 - 
                  
At the command prompt, use the DISM command to retrieve the Windows Recovery Environment (WinRE) information. For this example, enter the following command and then press Enter:
Dism /Get-ImageInfo /ImageFile:\\?\GLOBALROOT\device\harddisk0\partition5\Recovery\WindowsRE\winre.wim /index:1
Note The default name for the WinRE image file is winre.wim. In your environment, the name of the WinRE image file might be different. Also, the Index number of the default winre.wim file is 1. In your environment, the Index number might be different.
 - 
                  
The WinRE image file information is returned as illustrated in the following example:
 The WinRE version in this example is 10.0.22621.4742. 
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.
| 
                       File name  | 
                    
                       File version  | 
                    
                       Date  | 
                    
                       Time  | 
                    
                       File size  | 
                  
| 
                       winload.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       956,736  | 
                  
| 
                       winload.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,091,520  | 
                  
| 
                       bootmgfw.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,016,312  | 
                  
| 
                       bootmgfw_EX.efi  | 
                    
                       10.0.26100.30212  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2,376,464  | 
                  
| 
                       SecureBootRecovery.efi  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       39,296  | 
                  
| 
                       bootmgr.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,002,976  | 
                  
| 
                       bootmgr_EX.efi  | 
                    
                       10.0.26100.30212  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2,363,264  | 
                  
| 
                       boot.stl  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       10,853  | 
                  
| 
                       bootux.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       3,716,096  | 
                  
| 
                       winresume.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       792,976  | 
                  
| 
                       winresume.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       899,872  | 
                  
| 
                       BootMenuUX.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       496,128  | 
                  
| 
                       bootim.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       20,992  | 
                  
| 
                       ci.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       594,776  | 
                  
| 
                       driver.stl  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       19,991  | 
                  
| 
                       fltMgr.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       293,880  | 
                  
| 
                       hal.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       348,640  | 
                  
| 
                       halmacpi.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       348,640  | 
                  
| 
                       cmi2migxml.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       142,840  | 
                  
| 
                       csiagent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       515,576  | 
                  
| 
                       diagER.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       44,512  | 
                  
| 
                       hwcompat.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       169,424  | 
                  
| 
                       hwcompat.txt  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2,740  | 
                  
| 
                       hwexclude.txt  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2  | 
                  
| 
                       migapp.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       654,548  | 
                  
| 
                       migcore.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       6,502,392  | 
                  
| 
                       mighost.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       265,168  | 
                  
| 
                       migres.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       17,400  | 
                  
| 
                       migisol.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       123,384  | 
                  
| 
                       migstore.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       942,584  | 
                  
| 
                       migsys.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       306,144  | 
                  
| 
                       MXEAgent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       241,656  | 
                  
| 
                       offline.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       33,714  | 
                  
| 
                       oscomps.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       435,175  | 
                  
| 
                       oscomps.woa.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       249,101  | 
                  
| 
                       osfilter.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       21,299  | 
                  
| 
                       reagent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       974,840  | 
                  
| 
                       setupplatform.cfg  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,664  | 
                  
| 
                       setupplatform.dll  | 
                    
                       1.42.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       5,774,256  | 
                  
| 
                       setupplatform.exe  | 
                    
                       1.42.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       155,064  | 
                  
| 
                       SFCN.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,824  | 
                  
| 
                       SFLCID.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,644  | 
                  
| 
                       SFLISTW7.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,703,322  | 
                  
| 
                       SFLISTW8.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2,608,968  | 
                  
| 
                       SFLISTWB.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       3,173,014  | 
                  
| 
                       SFLISTWT.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       4,935,856  | 
                  
| 
                       sflistw8.woa.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       954,506  | 
                  
| 
                       SFLISTRS1.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       5,590,872  | 
                  
| 
                       sflistwb.woa.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,150,204  | 
                  
| 
                       sflistwt.woa.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2,637,298  | 
                  
| 
                       SFPAT.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       11,345  | 
                  
| 
                       SFPATW7.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       17,117  | 
                  
| 
                       SFPATW8.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       79,539  | 
                  
| 
                       SFPATWB.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       91,356  | 
                  
| 
                       SFPATWT.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       165,630  | 
                  
| 
                       SFPATRS1.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       169,643  | 
                  
| 
                       unbcl.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       842,232  | 
                  
| 
                       upgradeagent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       2,425,776  | 
                  
| 
                       upgradeagent.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       70,803  | 
                  
| 
                       upgrade_bulk.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       190,757  | 
                  
| 
                       upgrade_data.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       31,023  | 
                  
| 
                       upgrade_frmwrk.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       15,010  | 
                  
| 
                       upgWow_bulk.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       97,470  | 
                  
| 
                       uninstall.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       3,187  | 
                  
| 
                       uninstall_data.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       8,973  | 
                  
| 
                       wdsutil.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       232,928  | 
                  
| 
                       ClipSp.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       591,344  | 
                  
| 
                       netio.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       344,568  | 
                  
| 
                       ntdll.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,585,312  | 
                  
| 
                       ntoskrnl.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       6,044,152  | 
                  
| 
                       wof.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       175,072  | 
                  
| 
                       pdc.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       94,216  | 
                  
| 
                       diagtrack.dll  | 
                    
                       10.0.10586.0  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       922,976  | 
                  
| 
                       diagtrackrunner.exe  | 
                    
                       10.0.10586.0  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       79,040  | 
                  
| 
                       reagent.admx  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,240  | 
                  
| 
                       reagent.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       781  | 
                  
| 
                       SetupPlatform.cfg  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       7,902  | 
                  
| 
                       wdsclientapi.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       238,512  | 
                  
| 
                       wdscore.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       203,256  | 
                  
| 
                       wdscsl.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       52,728  | 
                  
| 
                       wdsimage.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       774,600  | 
                  
| 
                       wdstptc.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       561,080  | 
                  
| 
                       fvevol.sys  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       563,664  | 
                  
| 
                       dumpfve.sys  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       76,696  | 
                  
| 
                       fveapibase.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       185,856  | 
                  
| 
                       fveapi.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       590,336  | 
                  
| 
                       ResetEngine.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,439,744  | 
                  
| 
                       ResetEngine.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       10,240  | 
                  
| 
                       reseteng.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       946,176  | 
                  
| 
                       resetengmig.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       64,512  | 
                  
| 
                       ResetEngInterfaces.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       8,704  | 
                  
| 
                       srms.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       56,119  | 
                  
| 
                       srms62.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       22,841  | 
                  
| 
                       sysreset.exe  | 
                    
                       6.1.7782.0  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       595,456  | 
                  
| 
                       systemreset.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       321,296  | 
                  
| 
                       SysResetErr.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       37,880  | 
                  
| 
                       tcpip.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       1,979,872  | 
                  
| 
                       FWPKCLNT.SYS  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       293,344  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       112,640  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       121,856  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       126,464  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       119,808  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       127,488  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       126,976  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       110,592  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       125,440  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       125,952  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       115,712  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       121,344  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       124,928  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       107,008  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       122,880  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       130,048  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       124,416  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       88,576  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       86,016  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       117,248  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       119,296  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       133,632  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       120,832  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       123,392  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       118,784  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       116,736  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       77,312  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       77,824  | 
                  
| 
                       winpeshl.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       25,600  | 
                  
| 
                       wpeutil.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       105,472  | 
                  
| 
                       wpeutil.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       10,752  | 
                  
| 
                       wpeinit.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       28,672  | 
                  
| 
                       startnet.cmd  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       9  | 
                  
| 
                       ReAgent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       974,856  | 
                  
| 
                       ReInfo.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       168,960  | 
                  
| 
                       StartRep.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       673,280  | 
                  
| 
                       RecEnv.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       613,336  | 
                  
| 
                       BootRec.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:27  | 
                    
                       289,792  | 
                  
| 
                       File name  | 
                    
                       File version  | 
                    
                       Date  | 
                    
                       Time  | 
                    
                       File size  | 
                  
| 
                       skci.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       176,456  | 
                  
| 
                       VbsSiPolicy.p7b  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       68,351  | 
                  
| 
                       winload.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,193,256  | 
                  
| 
                       winload.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,388,016  | 
                  
| 
                       bootmgfw.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,211,376  | 
                  
| 
                       bootmgfw_EX.efi  | 
                    
                       10.0.26100.30212  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,830,632  | 
                  
| 
                       SecureBootRecovery.efi  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       162,688  | 
                  
| 
                       bootmgr.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,197,040  | 
                  
| 
                       bootmgr_EX.efi  | 
                    
                       10.0.26100.30212  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,818,464  | 
                  
| 
                       boot.stl  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       11,030  | 
                  
| 
                       bootux.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       3,753,984  | 
                  
| 
                       winresume.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       904,072  | 
                  
| 
                       winresume.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,069,320  | 
                  
| 
                       BootMenuUX.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       583,680  | 
                  
| 
                       bootim.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,600  | 
                  
| 
                       ci.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       652,136  | 
                  
| 
                       driver.stl  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       32,631  | 
                  
| 
                       fltMgr.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       378,352  | 
                  
| 
                       hal.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       453,104  | 
                  
| 
                       cmi2migxml.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       177,120  | 
                  
| 
                       csiagent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       663,520  | 
                  
| 
                       diagER.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       52,728  | 
                  
| 
                       hwcompat.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       207,288  | 
                  
| 
                       hwcompat.txt  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,838  | 
                  
| 
                       hwexclude.txt  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2  | 
                  
| 
                       migapp.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       654,548  | 
                  
| 
                       migcore.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       8,291,832  | 
                  
| 
                       mighost.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       272,832  | 
                  
| 
                       migres.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       17,400  | 
                  
| 
                       migisol.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       143,352  | 
                  
| 
                       migstore.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,189,384  | 
                  
| 
                       migsys.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       386,544  | 
                  
| 
                       MXEAgent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       313,840  | 
                  
| 
                       offline.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       33,714  | 
                  
| 
                       oscomps.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       435,175  | 
                  
| 
                       oscomps.woa.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       249,101  | 
                  
| 
                       osfilter.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       21,299  | 
                  
| 
                       reagent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,126,392  | 
                  
| 
                       setupplatform.cfg  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,664  | 
                  
| 
                       setupplatform.dll  | 
                    
                       1.42.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       7,220,144  | 
                  
| 
                       setupplatform.exe  | 
                    
                       1.42.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       166,840  | 
                  
| 
                       SFCN.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,824  | 
                  
| 
                       SFLCID.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,644  | 
                  
| 
                       SFLISTW7.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,703,322  | 
                  
| 
                       SFLISTW8.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,608,968  | 
                  
| 
                       SFLISTWB.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       3,173,014  | 
                  
| 
                       SFLISTWT.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       4,935,856  | 
                  
| 
                       sflistw8.woa.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       954,506  | 
                  
| 
                       SFLISTRS1.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       5,590,872  | 
                  
| 
                       sflistwb.woa.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,150,204  | 
                  
| 
                       sflistwt.woa.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,637,298  | 
                  
| 
                       SFPAT.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       11,345  | 
                  
| 
                       SFPATW7.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       17,117  | 
                  
| 
                       SFPATW8.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       79,539  | 
                  
| 
                       SFPATWB.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       91,356  | 
                  
| 
                       SFPATWT.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       165,630  | 
                  
| 
                       SFPATRS1.inf  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       169,643  | 
                  
| 
                       unbcl.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,099,256  | 
                  
| 
                       upgradeagent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       3,051,952  | 
                  
| 
                       upgradeagent.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       70,803  | 
                  
| 
                       upgrade_bulk.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       190,757  | 
                  
| 
                       upgrade_data.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       31,023  | 
                  
| 
                       upgrade_frmwrk.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       15,010  | 
                  
| 
                       upgWow_bulk.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       97,470  | 
                  
| 
                       uninstall.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       3,187  | 
                  
| 
                       uninstall_data.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       8,973  | 
                  
| 
                       wdsutil.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       291,296  | 
                  
| 
                       ClipSp.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       683,504  | 
                  
| 
                       netio.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       469,472  | 
                  
| 
                       ntdll.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,883,840  | 
                  
| 
                       ntoskrnl.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       7,795,168  | 
                  
| 
                       wof.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       200,160  | 
                  
| 
                       pdc.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       111,072  | 
                  
| 
                       diagtrack.dll  | 
                    
                       10.0.10586.0  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,365,856  | 
                  
| 
                       diagtrackrunner.exe  | 
                    
                       10.0.10586.0  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       88,256  | 
                  
| 
                       reagent.admx  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,240  | 
                  
| 
                       reagent.xml  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       781  | 
                  
| 
                       SetupPlatform.cfg  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       7,902  | 
                  
| 
                       wdsclientapi.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       276,920  | 
                  
| 
                       wdscore.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       250,872  | 
                  
| 
                       wdscsl.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       61,432  | 
                  
| 
                       wdsimage.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       910,776  | 
                  
| 
                       wdstptc.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       654,264  | 
                  
| 
                       fvevol.sys  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       654,800  | 
                  
| 
                       dumpfve.sys  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       91,728  | 
                  
| 
                       fveapibase.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       216,576  | 
                  
| 
                       fveapi.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       734,720  | 
                  
| 
                       ResetEngine.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,817,600  | 
                  
| 
                       ResetEngine.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       11,264  | 
                  
| 
                       reseteng.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,082,880  | 
                  
| 
                       resetengmig.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       77,312  | 
                  
| 
                       ResetEngInterfaces.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       9,728  | 
                  
| 
                       srms.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       56,119  | 
                  
| 
                       srms62.dat  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       22,841  | 
                  
| 
                       sysreset.exe  | 
                    
                       6.1.7782.0  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       689,152  | 
                  
| 
                       systemreset.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       355,416  | 
                  
| 
                       SysResetErr.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       43,016  | 
                  
| 
                       tcpip.sys  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,538,464  | 
                  
| 
                       FWPKCLNT.SYS  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       411,144  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       112,640  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       121,856  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       126,464  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       119,808  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       127,488  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       126,976  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       110,592  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       125,440  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       125,952  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       115,712  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       121,344  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       124,928  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       107,008  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       122,880  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       130,048  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       124,416  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       88,576  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       86,016  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       117,248  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       119,296  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       133,632  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       120,832  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       123,392  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       118,784  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       116,736  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       77,312  | 
                  
| 
                       tcpip.sys.mui  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       77,824  | 
                  
| 
                       winpeshl.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       30,208  | 
                  
| 
                       wpeutil.dll  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       121,344  | 
                  
| 
                       wpeutil.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       12,800  | 
                  
| 
                       wpeinit.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       32,256  | 
                  
| 
                       startnet.cmd  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       9  | 
                  
| 
                       ReAgent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,126,368  | 
                  
| 
                       ReInfo.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       194,048  | 
                  
| 
                       StartRep.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       762,368  | 
                  
| 
                       RecEnv.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       709,072  | 
                  
| 
                       BootRec.exe  | 
                    
                       10.0.14393.8415  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       337,920  | 
                  
| 
                       ntdll.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,571,832  | 
                  
| 
                       wdsnbp.com  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       30,832  | 
                  
| 
                       abortpxe.com  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       79  | 
                  
| 
                       bootmgr.exe  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       636,384  | 
                  
| 
                       pxeboot.com  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,358  | 
                  
| 
                       pxeboot.n12  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,358  | 
                  
| 
                       hdlscom1.com  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,662  | 
                  
| 
                       hdlscom2.com  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,662  | 
                  
| 
                       hdlscom1.n12  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,646  | 
                  
| 
                       hdlscom2.n12  | 
                    
                       Not versioned  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       25,646  | 
                  
| 
                       bootmgfw.efi  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       1,016,312  | 
                  
| 
                       bootmgfw_EX.efi  | 
                    
                       10.0.26100.30212  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       2,376,464  | 
                  
| 
                       ReAgent.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       974,856  | 
                  
| 
                       ReInfo.dll  | 
                    
                       10.0.14393.8243  | 
                    
                       15-Aug-25  | 
                    
                       15:22  | 
                    
                       168,960  | 
                  
References
Description of the standard terminology that is used to describe Microsoft software updates
Query words: safeos du