Cloud House Technologies Logo
CloudHouse Technologies
HomeServicesProjectsBlogAbout UsCareersContact UsLogin
    Cloud House Technologies Logo
    CloudHouse Technologies
    HomeServicesProjectsBlogAbout UsCareersContact UsLogin

    How to Fix Windows 11 KB5083769 VSS Backup Timeout Error (2026 Guide)

    Priya

    Content Writer & Researcher

    Last Updated: 1 July 2026
    🖥️

    Is Your Windows 11 Backup Still Broken?

    Our certified Windows engineers can diagnose your VSS issue and restore your backups remotely — usually in under 60 minutes.

    🔧 Book Free DiagnosisCall NowWhatsApp
    🖥️12,400+PCs Fixed
    ⭐4.9★Google Rating
    ⚡<15 minAvg. Response
    🛡️ISO 27001Certified

    What Is KB5083769 and Why It Breaks Backups

    KB5083769 is Microsoft's April 2026 cumulative security update for Windows 11 versions 24H2 and 25H2. While the patch delivers important security fixes, it introduced a significant side effect: it expanded Windows Defender's Vulnerable Driver Blocklist to include psmounterex.sys — a kernel-level driver used by several popular backup applications.

    The driver psmounterex.sys versions 8.1.7544 and below are vulnerable to CVE-2023-43896, a privilege escalation flaw. By blocking this driver, Windows 11 prevents backup tools from mounting shadow copy snapshots — and since VSS (Volume Shadow Copy Service) relies on this driver to create consistent point-in-time snapshots, the entire backup pipeline breaks.

    The result: backup operations fail mid-process with timeout errors, users cannot create new System Restore points, and File History backups stall silently. Affected software includes Acronis Cyber Protect Cloud, Macrium Reflect, NinjaOne Backup, UrBackup Server, and any other tool that hooks into VSS at the kernel level.

    How to Identify VSS Backup Timeout Errors

    Before applying any fix, confirm that KB5083769 is the cause. Here is how to diagnose the problem.

    Check Windows Update History

    1. Open Settings → Windows Update → Update history
    2. Look for KB5083769 in the list with an April 2026 install date

    Read the Event Viewer Logs

    Open Event Viewer and navigate to Windows Logs → Application. Filter by source VSS or VolSnap and look for these event IDs:

    • Event ID 12289 — VSS unexpected error
    • Event ID 8193 — Volume Shadow Copy Service error: Unexpected error calling routine
    • Event ID 513 — Cryptographic Services failed

    Run this command in an elevated PowerShell window to pull VSS errors quickly:

    Get-WinEvent -LogName Application | Where-Object { $_.ProviderName -eq "VSS" } | Select-Object -First 20 | Format-List TimeCreated, Message

    Common Error Messages

    • The backup has failed because Microsoft VSS has timed out during snapshot creation
    • VSS_E_BAD_STATE: The shadow copy provider had an unexpected error while trying to process the specified operation
    • Volume Shadow Copy Service error: Unexpected error DeviceIoControl

    Method 1: Uninstall KB5083769 Patch Safely

    The fastest way to restore backup functionality is to uninstall the problematic update. This is safe to do temporarily while you wait for updated drivers from your backup vendor.

    Via Settings (Recommended)

    1. Go to Settings → Windows Update → Update history
    2. Click Uninstall updates under Related settings
    3. Find Security Update for Microsoft Windows (KB5083769)
    4. Click Uninstall and confirm
    5. Restart your PC

    Via Command Prompt (Faster)

    Open Command Prompt as Administrator and run:

    wusa /uninstall /kb:5083769 /quiet /norestart

    Then restart your system:

    shutdown /r /t 0

    Pause Updates After Uninstall

    After uninstalling, pause Windows Update to prevent KB5083769 from reinstalling automatically. Go to Settings → Windows Update, click Pause updates and select 5 weeks. This gives you time to update your backup software before re-enabling updates.

    Method 2: Restart Volume Shadow Copy Service

    If uninstalling the patch is not immediately possible, restarting the VSS service can temporarily restore backup operations, especially after a failed backup attempt that left the service in a bad state.

    Via Services Manager

    1. Press Win + R, type services.msc, and press Enter
    2. Scroll to Volume Shadow Copy
    3. Right-click and select Restart (or Start if it shows as Stopped)
    4. Also restart the Microsoft Software Shadow Copy Provider service

    Via PowerShell (Elevated)

    Stop-Service -Name VSS -Force
    Stop-Service -Name swprv -Force
    Start-Service -Name swprv
    Start-Service -Name VSS
    Get-Service VSS, swprv | Select-Object Name, Status

    Verify the services show Running status. Then retry your backup operation.

    Re-register VSS Components

    If the service restart does not help, re-register the VSS DLL files. Open an elevated Command Prompt and run these commands one at a time:

    cd /d %windir%\system32
    net stop vss
    net stop swprv
    regsvr32 /s ole32.dll
    regsvr32 /s vss_ps.dll
    vssvc /register
    regsvr32 /s /i swprv.dll
    regsvr32 /s /i eventcls.dll
    regsvr32 /s es.dll
    regsvr32 /s stdprov.dll
    regsvr32 /s vssui.dll
    regsvr32 /s msxml.dll
    regsvr32 /s msxml3.dll
    regsvr32 /s msxml4.dll
    net start swprv
    net start vss

    Method 3: Reset VSS Storage and Recreate Restore Points

    If VSS storage has become corrupted by the failed backup attempts, you need to resize and reset shadow storage before creating new restore points.

    Step 1: Delete Existing Corrupt Shadow Copies

    Open an elevated Command Prompt:

    vssadmin delete shadows /all /quiet

    Step 2: Resize Shadow Storage

    vssadmin resize shadowstorage /For=C: /On=C: /MaxSize=10%

    Replace 10% with a higher value such as 15% if your drive is large and you need more restore point history.

    Step 3: Verify VSS Writers Are Stable

    vssadmin list writers

    All writers should show State: [1] Stable and Last error: No error. If any writer shows a failed state, note its name and restart the corresponding Windows service.

    Step 4: Create a New Restore Point

    powershell -Command "Checkpoint-Computer -Description 'Post KB5083769 Fix' -RestorePointType MODIFY_SETTINGS"

    If this succeeds without a timeout error, your VSS pipeline is fully restored.

    Method 4: Update or Rollback Third-Party Backup Software

    Microsoft's official recommended fix is to update your backup application to a version that ships a patched driver. Vendors have been aware of CVE-2023-43896 since October 2023 and most have released patches.

    Acronis Cyber Protect Cloud

    Update to the latest agent version via the Acronis management console. Versions released after November 2023 include a patched psmounterex.sys. Navigate to Backup Console → Agents → Update Available.

    Macrium Reflect

    Macrium released a security patch for CVE-2023-43896 in versions 8.0.7690 and 8.1.7675 (October 2023). If you are running an older version, download the latest from macrium.com and run the installer over your existing installation.

    UrBackup Server

    Update to the latest UrBackup client/server version. The patched driver is included in releases after December 2023.

    NinjaOne Backup

    Update the NinjaOne agent via the NinjaOne dashboard. Navigate to Administration → Software → Agents and push the latest version to affected endpoints.

    Need immediate help? Get Expert Windows 11 Support from CloudHouse Technologies. We can diagnose and fix your VSS backup issue remotely, usually in under 60 minutes.

    How to Prevent This Issue After Future Updates

    The KB5083769 incident highlights an important risk: Windows security updates can silently break backup tools that depend on third-party kernel drivers. Here is how to protect yourself going forward.

    1. Always Keep Backup Software Up to Date

    Enable auto-updates in your backup software. Vendors patch known driver vulnerabilities quickly, and staying current ensures compatibility with Microsoft's driver blocklist updates.

    2. Test Backups After Every Major Windows Update

    Set a reminder to run a test backup within 24 hours of any cumulative update install. A failed test backup is far less painful than discovering your backup is broken when you need to restore.

    3. Defer Quality Updates on Business Systems

    For small businesses, configure Windows Update for Business to defer quality updates by 7 days. Open Group Policy Editor (gpedit.msc), navigate to Computer Configuration → Administrative Templates → Windows Components → Windows Update, and set Select when Quality Updates are received to 7 days deferral.

    4. Maintain Offline Backups with Robocopy

    Keep at least one recent backup on an external drive or NAS that does not depend on VSS. Robocopy provides file-level backups without shadow copy infrastructure:

    robocopy C:\Users\%USERNAME%\Documents D:\Backup\Documents /E /COPYALL /LOG:backup_log.txt

    5. Monitor the Windows Health Dashboard

    Bookmark Microsoft's Windows 11 release health page. Known issues from cumulative updates are posted there within hours of widespread reports.

    FAQ: KB5083769 Backup Failures

    Is KB5083769 safe to uninstall?

    Yes, uninstalling KB5083769 is safe as a temporary measure. The patch addresses security vulnerabilities in the Windows kernel, so you should plan to reinstall it once your backup software has been updated to use a patched driver. Keep your system behind a firewall and avoid public networks in the interim.

    Why does KB5083769 cause VSS timeout errors specifically?

    KB5083769 added psmounterex.sys to Windows Defender's Vulnerable Driver Blocklist due to CVE-2023-43896. Backup software that bundles versions 8.1.7544 or older of this driver can no longer load it at the kernel level, causing VSS snapshot creation to time out waiting for a driver that Windows is actively blocking.

    Will Windows Update reinstall KB5083769 automatically?

    Yes. If you uninstall KB5083769 without pausing Windows Update, it will reinstall automatically on the next update check, usually within 24 to 72 hours. Always pause updates for at least 5 weeks after uninstalling the patch to give yourself time to update your backup software first.

    My System Restore points are gone after KB5083769 — can I recover them?

    If VSS was broken during the time restore points were being created, those specific restore points may be corrupt or missing. You cannot recover them, but you can create new ones once VSS is working again. If you have a third-party backup from before the KB5083769 install, use that for recovery instead.

    Which backup software is NOT affected by KB5083769?

    Windows built-in Backup and Restore and OneDrive file sync are not affected because they do not use the psmounterex.sys driver. Third-party tools confirmed unaffected include Veeam Agent for Windows (which uses its own VSS provider) and EaseUS Todo Backup versions released after January 2024. Always check your vendor's release notes after major Windows updates.

    Get the Free Windows Troubleshooting Cheatsheet (PDF)

    25 common Windows errors with step-by-step fixes — printable, one page. Delivered to your inbox instantly.

    Running a business? Stop fighting PC issues alone.

    Our Managed IT Support plans cover every desktop and laptop in your office — unlimited fixes, proactive monitoring, and guaranteed response times.

    • 24×7 remote + onsite Windows support
    • Proactive patching to prevent crashes and BSODs
    • Backup, antivirus, and asset management included
    • Flat per-device pricing — no surprise bills
    See Pricing Plans →

    What our customers say

    “Screen went black the morning of a board meeting. CloudHouse had me back up in 12 minutes over a remote session. Lifesavers.”

    Priya R.

    Operations Manager

    “Moved our 38-machine office to their managed plan. Tickets resolved before staff even notice. Worth every rupee.”

    Rahul M.

    IT Lead

    Frequently Asked Questions

    Yes, uninstalling KB5083769 is safe as a temporary measure. The patch addresses kernel security vulnerabilities, so plan to reinstall it once your backup software has been updated to use a patched driver. Keep your system behind a firewall in the interim.

    Book your free 15-minute diagnosis

    A certified technician will call you back within 15 minutes during business hours.

    Share this article

    Leave a Comment

    Comments (0)

    Loading comments...

    Need Windows 11 Backup Help?

    CloudHouse Technologies offers remote support for VSS errors, backup failures, and Windows 11 update issues. Fast, expert help when you need it most.

    Call Now — FreeWhatsApp Us

    Why CloudHouse?

    • ISO 27001:2022 certified
    • 12,400+ devices supported
    • 4.9★ on Google
    • Sub-15-minute response

    CloudHouse Technologies

    Innovative cloud solutions for modern businesses. We deliver cutting-edge technology with exceptional service.

    Contact Us

    CloudHouse Technologies Pvt.Ltd
    Special Economic Zone(SEZ),
    Infopark Thirissur,4B-15,
    Indeevaram,Nalukettu Road,
    Koratty, Kerala, India-680308
    0480-27327360
    info@cloudhousetechnologies.com

    Quick Links

    • Our Services
    • Gold Loan Software
    • About Us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    ISO27001:2022
    Certified

    © 2026 CloudHouse Technologies Pvt.Ltd. All rights reserved.

    Back to top