Hi @my zhao ,
Thank you for providing such a detailed report. From your logs, the issues you’re seeing after upgrading to Windows 11 version 25H2 appear to involve multiple layers — specifically storage subsystem errors, COM permission conflicts, and network resolution timeouts.
Let’s address them in order of severity.
1. Disk and Paging Errors (Critical)
The repeated messages like:
“Windows was unable to save all the data for the file D:$Mft…” “An error was detected on device \Device\Harddisk1\DR1 during paging.”
indicate the storage device (TOSHIBA HDWD110) is either:
- Experiencing hardware-level instability,
- Or the upgrade triggered a driver/firmware incompatibility with the SATA controller.
Recommended steps:
- Run a full disk check:
chkdsk D: /f /rThis will scan and repair bad sectors; the process can take time.
- Check SMART health:
→ If it reports anything other than OK, back up data immediately.wmic diskdrive get status, model - Update SATA/Chipset/Storage drivers from your motherboard or OEM website — do not rely on Windows Update drivers for this case.
If issues persist, test the drive on another system to rule out hardware failure.
2. COM Server Permission Error
The CLSID {2593F8B9-4EAF-457C-B68A-50F6B8EA6B54} corresponds to the RuntimeBroker service.
This can appear after upgrades when DCOM permissions reset or user accounts lose local activation rights.
To fix:
- Open Component Services →
dcomcnfg. - Navigate to: Component Services → Computers → My Computer → DCOM Config → RuntimeBroker
- Right-click → Properties → Security tab
- Under Launch and Activation Permissions, choose Edit → Add your user (e.g., myzhao) → grant Local Activation.
Alternatively, you can reset permissions via:
icacls %windir%\system32 /reset /t /c
and restart the system.
3. Network & Certificate Errors
Timeouts like:
“Name resolution for cp601.prod.do.dsp.mp.microsoft.com timed out…”
suggest a DNS or certificate validation delay post-upgrade. This can happen if:
- The network driver stack wasn’t fully reinitialized, or
- Corrupt certificate cache interferes with Microsoft endpoints.
Try:
ipconfig /flushdns
netsh winsock reset
netsh int ip reset
certutil -urlcache * delete
Then restart the PC and confirm the network adapter driver is the latest from your OEM.
4. General Recommendation
Given the combination of disk errors and post-upgrade instability, I recommend:
- Backing up your data immediately.
- Running:
sfc /scannow DISM /Online /Cleanup-Image /RestoreHealth - If corruption persists, consider performing a repair install of Windows 11 25H2 using the Media Creation Tool.
If you can share the output of:
chkdsk D:
and
slmgr /dlv
we can narrow down whether this is a failing drive or a software corruption chain.
Hope this helps. Feel free to reach out if you encounter any problem.