⏱ 7 min read  ·  ✅ Updated Sep 2026
🔥Amazon Prime Day 2026 is coming — don’t miss the best deals.See Top Deals →

A sudden drop in framerate immediately following a Windows Update is one of the most reliably frustrating experiences in PC gaming. When your average FPS falls 20 to 40 frames after a feature update or a cumulative patch, the problem almost always traces to a conflict between the new Windows component stack and your display driver, a scheduler change in the kernel, or a background service that the update re-enabled or reconfigured. The symptom typically manifests as a lower frame-time average paired with a higher 1% low, meaning the game is not merely running at a reduced ceiling but is stuttering under inconsistent GPU or CPU availability. Engine-level behavior matters here: Unreal Engine 4 and 5 titles that rely on DirectX 12 and the Windows Subsystem for Graphics (WDDM) path show the widest swings, while older Vulkan-based builds tend to be less affected but can still regress if the update patches the GPU driver to a new WDDM version that the game’s swapchain handling does not expect.

Likely Causes

Cause How to confirm Fix difficulty
Driver mismatch (Windows pushed a generic or older WHQL driver via Update Catalog) Open Device Manager, compare driver date and version under NVIDIA Control Panel or AMD Adrenalin Low
Xbox Game Bar or Game Mode intercepting GPU priority Check Settings > Gaming > Xbox Game Bar; observe whether FPS recovers when overlay is disabled in-game Low
Windows Power Plan reset to Balanced after update powercfg /getactivescheme in Command Prompt; compare to your known-working plan Low
Hardware-Accelerated GPU Scheduling toggled or silently changed Settings > System > Display > Graphics > Change default graphics settings Low
Background reindexing, Windows Search, or Delivery Optimization saturating I/O Task Manager > Processes sorted by CPU/Disk; look for SearchIndexer.exe or MoUsoCoreWorker Medium
Fullscreen optimizations forced on by the update for previously excluded executables Right-click game .exe > Properties > Compatibility tab Medium
Kernel-level scheduler regression or D3D12 debug layer left enabled Check for dxdiag.exe reporting “Debug mode” or GPU-Z showing unexpected overhead High

Fix 1: Reinstall or Update Your GPU Driver

How to check

Open the NVIDIA Control Panel (nvcplui.exe) or AMD Software Adrenalin and note your driver version. Then open Device Manager, expand Display Adapters, right-click your GPU, and select Properties > Driver. If the version shown in Device Manager is older than the one in the control panel, or if it carries a date matching your last Windows Update, Microsoft likely replaced your driver with a Windows Update Catalog build that lacks game-specific optimizations.

What to do

Download the latest Game Ready or Adrenalin driver directly from NVIDIA or AMD. Run the installer and select the “Clean install” checkbox (NVIDIA) or the “Factory Reset” option (AMD). If a clean install does not help, use Display Driver Uninstaller (DDU) in Safe Mode to strip every remnant under C:\Windows\System32\DriverStore\FileRepository\nv_dispi* and the equivalent AMD folder, then reinstall fresh.

How to undo it

Uninstall the new driver and let Windows re-push whatever it had, or use a system restore point taken before the change.

Fix 2: Disable Xbox Game Bar and Game Mode

How to check

Press Win + G. If an overlay appears or if you see “Xbox Game Bar” listed in Task Manager at idle during gameplay, the service is active. Also check Settings > Gaming > Game Bar and confirm the toggle state.

What to do

Set both the “Xbox Game Bar” and “Game Mode” toggles to Off in Settings > Gaming. Then open Services (services.msc) and disable “Xbox Live Game Save” and “Xbox Accessory Management Service” if they are set to Automatic. Restart the system.

How to undo it

Re-enable the toggles in Settings > Gaming and revert the service startup types to their defaults.

Fix 3: Restore Your Power Plan and GPU Priority

How to check

Open Command Prompt and run: powercfg /getactivescheme. If it returns the Balanced GUID rather than your High Performance or Ultimate Performance plan, the update reset your choice.

What to do

Run: powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c (High Performance). Then open NVIDIA Control Panel > Manage 3D Settings > Power management mode and set it to “Prefer maximum performance.” On AMD, open the Radeon Settings > System > Graphics > Power Saving and confirm it is off.

How to undo it

Return the plan via powercfg /setactive of your previous scheme, and revert the driver power setting.

Fix 4: Toggle Hardware-Accelerated GPU Scheduling

How to check

Navigate to Settings > System > Display > Graphics > Change default graphics settings. Note the current state of “Hardware-accelerated GPU scheduling.” If it changed after the update or if you never set it deliberately, it may conflict with your driver.

What to do

Flip the toggle to the opposite state. A restart is required. Test both positions because some WDDM 3.0 drivers benefit from HAGS enabled while others, particularly certain Intel Arc and older GTX-series builds, show a measurable penalty.

How to undo it

Flip the toggle back and restart.

Fix 5: Disable Background Indexing and Update Throttling Services

How to check

Open Task Manager during a low-FPS session. Sort by CPU. Look for SearchIndexer.exe, MoUsoCoreWorker.exe, or svchost.exe instances tied to “Windows Update” or “Superfetch” consuming more than a few percent consistently.

What to do

Stop the Windows Search service temporarily: run sc stop WSearch. For Delivery Optimization, open Settings > Windows Update > Advanced options > Delivery Optimization and turn off “Allow downloads from other PCs.” If the issue resolves, set WSearch to Manual start (services.msc) rather than disabled, so it runs at your convenience.

How to undo it

Set WSearch back to Automatic and re-enable Delivery Optimization.

Fix 6: Disable Fullscreen Optimizations Per-Executable

How to check

Browse to your game’s install directory (for example, C:\Program Files (x86)\Steam\steamapps\common\[GameName]\ or C:\Games\Epic\). Right-click the main executable, select Properties > Compatibility, and look at whether “Disable fullscreen optimizations” is checked.

What to do

Check the box. Also check “Run this program in compatibility mode for” and set it to Windows 10 if you are on a newer build. Apply and test. This bypasses the DWM compositor path that Windows Update sometimes reconfigures, restoring exclusive-fullscreen-like timing.

How to undo it

Uncheck both boxes and apply.

Fix 7: Roll Back or Block the Problematic Update

How to check

Open Settings > Windows Update > Update history > Uninstall updates. Sort by installed date and identify the cumulative or feature update from the same day your FPS dropped. Confirm by checking its KB number against forums or the Microsoft Known Issues page.

What to do

Uninstall the KB update from that screen. If Windows re-installs it automatically, pause updates for 35 days or use the “Show or hide updates” troubleshooter from Microsoft’s support site to suppress it. As a last resort before a full rollback, run: Dism /Online /Cleanup-Image /RestoreHealth followed by sfc /scannow to ensure no component-store corruption from the patch is compounding the problem.

How to undo it

Resume updates and install the latest cumulative patch, or restore from a system image taken before you rolled back.

If Nothing Works

At this point the issue may be a kernel-level regression in the scheduler or a D3D12 runtime behavior change that no consumer-side setting can address. Run a clean boot (msconfig > Services > Hide all Microsoft services > Disable all) to confirm no third-party overlay or anti-cheat module is compounding the problem. If a clean boot resolves it, re-enable services in batches. If not, check the Windows Reliability Monitor (perfmon /rel) for driver errors logged at the same timestamp as your FPS drop. In 2026 the most common unresolved cause is a WDDM version bump that your GPU’s driver branch does not yet fully support, meaning you simply need to wait for a new driver release from NVIDIA or AMD rather than fight the OS.

FAQ

Does Windows Game Mode actually help or hurt FPS?

For most single-GPU systems with modern drivers, Game Mode is neutral or marginally positive. However, on systems with an integrated and discrete GPU, or when combined with HAGS, it has been documented to override application priority and reduce framerate. Disabling it costs nothing and takes ten seconds, so it is worth a test.

Why did only some games lose FPS after the update?

Games that use exclusive fullscreen or that have already opted into the flip-model swapchain (common in Unity HDRP and recent Unreal Engine builds) are less affected. Titles running in borderless windowed mode rely more heavily on DWM composition, which the update may have altered in timing or vsync policy.

Is a fresh Windows install overkill for this?

Yes, in almost every case. A low-FPS-after-update fix is rarely needed beyond driver cleanup and one or two setting changes. A reinstall is only justified if the component store is corrupted beyond sfc and DISM repair.

Can I prevent Windows from replacing my GPU driver?

Not permanently through the UI. You can group-policy-configure “Do not include drivers with Windows Updates” (gpedit.msc > Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage updates offered from Windows Update) to stop driver delivery, but this also blocks security patches for your GPU, so use it only as a diagnostic step.

Explore Our Guides & Free Tools