Microsoft’s August 2026 Windows 11 Update Is Resetting Mouse Settings — And Some Users Can’t Get Them Back + Video

Listen to this Post

Featured Image

A Frustrating Windows 11 Regression

Windows updates are supposed to make computers better, safer, and more reliable. But every so often, an update introduces a problem that feels almost absurdly simple until you are the person affected by it.

Microsoft has now confirmed that the KB5120998 August 2026 non-security preview update can reset or alter mouse cursor personalization settings on Windows 11 systems. For users who have spent time configuring custom cursors, high-DPI pointer sizes, animations, or other accessibility and appearance settings, the problem is more than a minor visual annoyance.

In some cases, the customized settings reportedly cannot be restored after the update changes them.

That makes this another example of a recurring Windows problem: an update designed to improve one part of the operating system can unexpectedly interfere with something that previously worked perfectly.

What Happened With KB5120998?

Microsoft released KB5120998 on August 27, 2026, as an optional preview update for Windows 11 versions 24H2 and 25H2.

The update focuses primarily on non-security improvements, including changes involving the Start menu, taskbar, and Windows Search.

However, shortly after installation, users began reporting unusual behavior involving mouse cursor customization.

Microsoft subsequently acknowledged the issue, explaining that cursor personalization settings can be changed or reverted to standard configurations after installing KB5120998 or later Windows updates.

Custom Mouse Cursors Are Being Replaced

The most noticeable symptom is that customized cursor configurations may suddenly disappear.

Users have reported that high-DPI cursor designs can be replaced with larger white pointer icons. Custom cursor animations may also revert to Microsoft’s default animations.

For someone using Windows with a customized visual environment, this can make the desktop feel completely different overnight.

More importantly, the problem does not necessarily behave like an ordinary settings reset.

The Settings May Refuse to Stay Restored

The particularly troubling part of

Normally, resetting a Windows personalization setting would be inconvenient but relatively harmless. You open Settings, select the desired cursor, apply the change, and continue working.

With this bug, however, users have reported that restoring their previous configuration may be unsuccessful.

That raises the possibility that the update is interfering with the underlying cursor configuration rather than simply changing a visible option.

Microsoft Is Investigating the Root Cause

Microsoft has not yet identified the precise technical cause.

The company says it is investigating reports involving appearance regressions and intermittent animation changes.

The wording is significant because it suggests that the problem may not affect every mouse configuration in exactly the same way.

Some systems could experience a different cursor appearance, while others could see animations behave differently or customized pointer settings disappear entirely.

Why This Matters More Than It Sounds

At first glance, a broken mouse cursor might seem like a low-priority Windows bug.

It

Mouse configuration can be important for users with visual impairments, high-resolution displays, specialized workflows, accessibility requirements, gaming setups, remote desktop environments, and professional applications.

A cursor that suddenly becomes larger, changes color, loses animation behavior, or becomes difficult to distinguish can have a genuine impact on usability.

For many people, the mouse pointer is one of the most constantly visible elements of the operating system.

KB5120998 Is an Optional Update

There is an important detail here: KB5120998 is a preview, non-security update.

That means users generally do not need to install it immediately simply to remain protected against security vulnerabilities.

Windows 11 users normally have to select “Download and install” to install an optional preview update.

There is one important exception.

Users who have enabled “Get the latest updates as soon as they’re available” may receive optional updates earlier as Microsoft makes them available.

The Safest Approach for Many Users

For people who have not installed KB5120998 yet, this incident provides another reason to avoid rushing into optional preview updates on production machines.

Preview updates can contain useful fixes and improvements, but they are also effectively an additional testing stage before broader deployment.

If a computer is used for work, business operations, content production, administration, or other important tasks, stability can be more valuable than receiving a few weeks of interface improvements early.

Windows 11 Has Seen Other Mouse Problems

This is not the first time Microsoft has had to investigate mouse-related problems.

The company has previously addressed issues involving USB mice and keyboards inside the Windows Recovery Environment (WinRE).

In that situation, an emergency update was required after a Windows issue could prevent USB input devices from functioning correctly in WinRE.

Microsoft has also been investigating a separate problem involving the mouse pointer disappearing for some users of classic Outlook, particularly when the pointer is moved over the application interface.

Taken together, these incidents illustrate how deeply mouse input is integrated into the Windows software stack.

The Hidden Complexity Behind a Simple Cursor

A mouse pointer looks like a tiny graphic on the screen, but Windows has to coordinate multiple components to display it correctly.

Cursor configuration can involve system settings, pointer schemes, graphics rendering, DPI scaling, accessibility settings, animation resources, theme information, registry configuration, and application-specific behavior.

That means an apparently small Windows UI regression can have surprisingly complicated causes.

A change to one component can produce unexpected effects elsewhere.

Why High-DPI Users May Notice It Immediately

High-DPI displays make cursor problems particularly obvious.

Modern monitors can operate at 1440p, 4K, 5K, and beyond. Windows therefore has to scale interface elements appropriately.

When cursor resources are replaced with a default pointer or an incorrectly scaled version, the difference can be immediately visible.

A cursor that looks normal on a conventional display can become disproportionately large or visually awkward on a high-DPI monitor.

The Animation Problem Is Another Clue

Microsoft’s mention of intermittent animation changes is particularly interesting.

Cursor animations are not simply static images. Windows must load and render the appropriate pointer resources and maintain the expected animation behavior.

If customized animated cursors suddenly revert to standard ones, it could indicate that Windows is falling back to default resources.

The exact cause remains unknown, but the behavior suggests that the update may be affecting how Windows resolves or applies customized cursor resources.

Users Should Report the Bug

Microsoft is asking affected users to submit reports through the Feedback Hub.

That is important because

Users experiencing the problem should document exactly what changed, including their Windows version, update number, cursor scheme, display scaling settings, and whether the cursor can be restored after a reboot.

Screenshots can also be useful when the problem concerns appearance.

What Users Should Do Before Installing Preview Updates

Before installing optional Windows preview updates, users should consider creating a restore point or ensuring they have a reliable backup.

This is particularly important for business systems and machines with heavily customized configurations.

An optional update does not provide enough benefit to justify unnecessary downtime on a critical workstation unless its specific fixes are needed.

How to Check Whether KB5120998 Is Installed

Users can check their installed Windows updates from Settings.

Navigate to:

Settings → Windows Update → Update history

Look for KB5120998 in the list of installed updates.

You can also check from the command line.

Deep Analysis

Check Installed Windows Updates

Open PowerShell as Administrator and run:

Get-HotFix | Sort-Object InstalledOn -Descending

This provides a list of installed Windows updates and their installation dates.

To specifically search for KB5120998:

Get-HotFix -Id KB5120998

If the update is installed, Windows should return information about it.

Check the Windows Version

You can also inspect the Windows build information with:

winver

Or from PowerShell:

Get-ComputerInfo | Select-Object WindowsProductName, WindowsVersion, OsBuildNumber

This can help determine whether the affected machine is running Windows 11 24H2 or 25H2.

Inspect Cursor Configuration

Windows stores various user-interface configuration settings within the user profile and registry.

For diagnostic purposes, you can inspect cursor-related configuration with:

Get-ItemProperty "HKCU:\Control Panel\Cursors"

This should be treated as a diagnostic command rather than an invitation to manually modify registry values.

Changing registry settings without understanding their purpose can create additional problems.

Check Windows Update History

PowerShell can also be used to inspect Windows Update events:
Get-WindowsUpdateLog

On supported Windows configurations, this generates a readable Windows Update log that can help with troubleshooting.

Check System File Integrity

If Windows components appear to be behaving abnormally after an update, Microsoft’s standard system-integrity tools can be useful.

Run:

sfc /scannow

Afterward, you can run:

DISM /Online /Cleanup-Image /RestoreHealth

These commands do not specifically fix the KB5120998 cursor bug, but they can help determine whether system corruption is contributing to the symptoms.

Consider Removing the Preview Update

If KB5120998 is causing serious problems and you do not need the preview update’s improvements, Windows provides an option to uninstall recent updates.

Go to:

Settings → Windows Update → Update history → Uninstall updates

Then locate KB5120998 if Windows allows it to be removed.

Before uninstalling an update on an important machine, make sure you understand the consequences and have a recovery path available.

Don’t Confuse This With a Security Emergency

Another important distinction is that KB5120998 is a non-security preview update.

This means the cursor problem should not automatically lead users to believe their systems are exposed to a newly discovered security vulnerability because of the bug itself.

In fact, the opposite lesson can be drawn for some users: when an update is optional and non-security-related, waiting for additional validation can be a sensible strategy.

Security updates are a different matter and should generally be evaluated much more urgently.

Microsoft’s Update Model Creates This Trade-Off

Modern Windows is effectively a continuously evolving operating system.

Microsoft no longer treats Windows as something that remains unchanged for years. Features, components, security protections, interface elements, and underlying services are continually modified.

That approach allows Microsoft to improve Windows faster.

But it also increases the possibility of regressions.

Every additional component touched by an update creates another opportunity for an unexpected interaction.

The Bigger Windows 11 Lesson

The KB5120998 incident is less about a mouse cursor and more about the challenge of maintaining a massive operating system.

Windows runs on an enormous variety of hardware configurations.

Different graphics cards, displays, DPI settings, accessibility configurations, third-party software, themes, peripherals, and drivers can create combinations that are almost impossible to test exhaustively.

Even an update that appears unrelated to mouse functionality can expose a previously hidden compatibility problem.

Why Preview Updates Need Real-World Testing

Microsoft can perform extensive automated testing before releasing an update.

But millions of real-world PCs provide something automated laboratories cannot fully reproduce: unpredictable combinations of hardware and software.

That is why preview updates can reveal unusual regressions.

Users who install them effectively become part of a much larger testing ecosystem.

For enthusiasts, administrators, and IT professionals, that can be useful.

For ordinary users whose computers simply need to work, it can be unnecessary risk.

Enterprise Administrators Should Pay Attention

Businesses managing large Windows fleets should monitor this issue carefully.

A single affected workstation is inconvenient.

A configuration regression deployed across hundreds or thousands of machines becomes an operational problem.

Organizations using centralized Windows management should consider validating preview updates on a small test group before wider deployment.

This is especially important when customized accessibility or pointer configurations are part of an organization’s standard desktop environment.

Accessibility Deserves Special Consideration

The accessibility angle should not be overlooked.

Users may customize cursor size, color, contrast, and behavior because the default Windows configuration does not provide sufficient visibility.

If an update unexpectedly replaces those settings, the result can be more than an aesthetic inconvenience.

It can make the computer harder to use.

That is one reason operating-system updates should treat personalization and accessibility configurations as important user state rather than disposable cosmetic preferences.

The Problem Also Raises a Preservation Question

There is a broader design question here.

When an operating system update modifies a

Ideally, updates should preserve user preferences unless there is a compelling technical reason to change them.

If a component becomes incompatible, Windows should ideally retain the user’s configuration and clearly explain why a fallback was necessary.

Silent changes create confusion because users cannot easily determine whether they caused the problem themselves.

What Undercode Say:

A Small Bug With a Bigger Message

The KB5120998 cursor problem may eventually be remembered as a minor Windows bug.

But the engineering lesson behind it is much more significant.

Updates Are Becoming More Complex

Modern Windows updates touch an enormous number of interconnected components.

Personalization Is System State

A customized cursor is not merely decoration for the user who relies on it.

Accessibility Must Be Protected

Any update that modifies accessibility-related visual settings deserves additional scrutiny.

Preview Updates Are Not Mandatory

Users should remember that optional preview updates exist for a reason.

Waiting Can Be Smart

There is nothing inherently wrong with allowing Microsoft and early adopters to discover regressions before installing an optional update.

Production Machines Need Stability

A business workstation should not become a test machine accidentally.

Backups Matter

Even apparently harmless operating-system updates can create unexpected problems.

Windows Recovery Matters Too

A machine that cannot reliably accept input during recovery is especially difficult to troubleshoot.

Microsoft Needs Better Regression Testing

Cursor configuration should be one of the easier areas of Windows to protect against regression.

But Windows Is Exceptionally Large

The enormous hardware and software ecosystem makes complete testing extraordinarily difficult.

User Reports Are Valuable

Microsoft cannot fix problems it does not know about.

Feedback Hub Has a Purpose

Affected users should report reproducible behavior rather than simply abandoning the configuration.

Screenshots Can Help

Visual bugs are often easier to diagnose when engineers can see exactly what users see.

Configuration Data Should Be Resilient

Windows should ideally preserve customization even when an update changes underlying components.

Silent Resets Are Frustrating

A setting that changes without explanation damages user confidence.

The Timing Is Interesting

The bug appeared alongside a broader Windows interface update.

Interface Changes Can Have Unexpected Effects

The relationship between UI components is often deeper than it appears.

High-DPI Computing Adds Complexity

Modern displays demand increasingly sophisticated scaling behavior.

Custom Animation Adds Another Layer

Animated cursors require additional resource handling compared with static pointers.

Default Fallbacks Can Become Regressions

A fallback that is technically safe can still be a poor user experience.

Optional Updates Should Be Treated Carefully

The word “optional” matters.

Security Updates Are Different

Users should not apply the same hesitation to critical security patches.

Businesses Need Staged Deployment

Testing an update with a small group can prevent large-scale disruption.

IT Teams Should Track Update IDs

Knowing exactly which KB introduced a problem makes troubleshooting much easier.

Windows Update History Is Useful

The update history provides an important first diagnostic step.

PowerShell Makes Verification Easier

Administrators can quickly identify whether a specific KB is installed.

System Repair Tools Have Their Place

SFC and DISM can rule out unrelated corruption.

Registry Editing Should Be a Last Resort

Users should not randomly modify cursor registry values in an attempt to repair the issue.

Microsoft Still Needs to Identify the Root Cause

Until that happens, workarounds may remain inconsistent.

The Fix Should Preserve Existing Settings

A successful solution should ideally restore personalization without requiring users to rebuild everything manually.

The Incident Is Not a Cyberattack

There is no indication that the cursor regression itself represents a security compromise.

It Is Still Operationally Important

Reliability problems can cost users time even when no security vulnerability exists.

Windows Users Have Become More Update-Conscious

Repeated update regressions have made users increasingly cautious.

Trust Is Part of Software Quality

Every unexpected configuration change can reduce confidence in the update process.

The Real Goal Is Predictability

Users do not expect Windows to remain frozen.

They do expect their settings to remain theirs.

✅ Microsoft Confirmed the Cursor Regression

Microsoft has acknowledged reports that mouse cursor personalization settings can be changed or reverted following Windows updates released from August 27, 2026, including KB5120998.

✅ KB5120998 Is a Preview Update

The article correctly identifies KB5120998 as an optional, non-security Windows 11 update targeting versions 24H2 and 25H2.

✅ High-DPI and Animation Problems Were Reported

Microsoft’s description specifically references reports involving high-DPI cursor replacement, larger white cursors, and customized cursor animations reverting to standard behavior.

✅ Microsoft Is Investigating

Microsoft has stated that it is investigating the underlying cause and has encouraged affected users to provide reports through Feedback Hub.

⚠️ The Exact Root Cause Remains Unknown

Any explanation claiming that a specific registry key, graphics driver, or Windows component is definitively responsible would currently go beyond what Microsoft has publicly confirmed.

⚠️ Previous Mouse Problems Are Separate Incidents

The WinRE USB-input problem and the classic Outlook pointer issue should not be treated as manifestations of the KB5120998 bug. They are separate Windows problems unless Microsoft later establishes a connection.

Prediction

(+1) Microsoft Will Likely Release a Fix

Microsoft is likely to address the cursor regression through a subsequent cumulative update, servicing update, or revised Windows component once engineers isolate the underlying cause.

(+1) The Impact Should Remain Limited

Because KB5120998 is an optional preview update, the number of systems affected should be smaller than if the same regression appeared in a mandatory security update.

(+1) Enterprise Administrators Will Become More Conservative

Incidents like this are likely to encourage organizations to maintain longer validation periods before deploying optional Windows updates across large fleets.

(+1) Windows Personalization Testing May Improve

The incident could push Microsoft to expand regression testing around accessibility, cursor schemes, high-DPI displays, and user customization.

(-1) More Windows Regressions Are Possible

As Windows continues to receive frequent feature and interface changes, similar compatibility problems remain possible.

(-1) Users With Custom Configurations May Face More Risk

The more heavily customized a Windows environment becomes, the more opportunities there are for an update to expose unexpected compatibility problems.

Final Verdict: When an Optional Update Changes Something You Never Asked It to Touch

The KB5120998 mouse regression is a perfect example of why Windows updates deserve context rather than blind installation.

The update itself was not designed to break mouse personalization. It was released to improve parts of Windows 11 such as the Start menu, taskbar, and Search. Yet users discovered that something as fundamental as their cursor configuration could be unexpectedly altered.

That disconnect is what makes the incident frustrating.

A Windows update should ideally improve the operating system without forcing users to reconstruct the environment they already built for themselves.

For now, users who have not installed KB5120998 and do not specifically need its preview improvements have little reason to rush. Those already affected should document the behavior, report it to Microsoft through Feedback Hub, and consider the available update-recovery options carefully.

The mouse pointer may occupy only a tiny portion of the screen, but this incident highlights something much larger: the smallest parts of an operating system can become the biggest source of frustration when an update stops respecting the way users configured their machines.

▶️ Related Video (72% Match):

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: www.bleepingcomputer.com
Extra Source Hub (Possible Sources for article):
https://www.twitter.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube