If you’ve recently installed a Windows 11 system update and noticed your system has become sluggish, unresponsive, or plagued with issues like the inability to focus or interact with windows correctly, you’re definitely not alone. Many users have taken to Reddit to vent their frustrations — and more importantly, to share surprisingly effective workarounds. These community-sourced fixes have proven life-saving for those whose productivity has ground to a halt thanks to a glitch that Microsoft has yet to officially acknowledge or resolve.
TL;DR
After a recent Windows 11 update, some users have experienced issues with window responsiveness, including apps not gaining focus or input handling freezing entirely. Fortunately, Reddit users have shared several workarounds that help restore system usability. These include restarting Windows Explorer, disabling certain background services, or creating custom scripts to restore focus flow manually. While not permanent fixes, they’re critical lifelines until Microsoft releases a proper patch.
Understanding the Core Issue
After certain cumulative updates to Windows 11 (notably versions in the KB5036xxx range), users began reporting that windows on their systems were no longer responding properly to input. Clicking on apps might result in a delay, or worse, the app would not gain focus at all. Pressing Alt + Tab would cycle through application thumbnails, but no input or keyboard commands would function. These symptoms left even experienced users scratching their heads.
Technically, the issue appears rooted in the interaction between Windows Explorer (explorer.exe) and the UX/UI rendering layer. Under certain conditions, possibly caused by failed update migrations or conflicting background processes, Explorer starts but fails to fully register window focus or responsiveness events. While Microsoft support has yet to release a fix, communities like Reddit’s r/Windows11 and r/techsupport have filled the gap.
Most Common Symptoms:
- Unable to click inside app windows or use keyboard shortcuts.
- Apps not coming to the foreground even though they’re open.
- Start Menu and Taskbar not responding or disappearing altogether.
- System feels laggy or intermittently freezes after boot.
Reddit’s Top Workarounds
Let’s walk through the most reliable community-discovered solutions to re-enable responsiveness and fix focus/input issues on Windows 11.
1. Restarting Windows Explorer via Task Manager
This is the quickest and often most effective temporary fix:
- Press Ctrl + Shift + Esc to open Task Manager.
- In the Processes tab, locate Windows Explorer.
- Right-click it and choose Restart.
This works because restarting Explorer reloads the graphical shell and resets internal focus handlers. Many Redditors found they needed to do this after each reboot until applying a more persistent solution.
2. Disabling GameBar Presence Writer Service
Some users traced the issue back to the GameBar Presence Writer, a background component Microsoft includes for Xbox Game Bar compatibility.
To disable it:
- Press Win + R, type
services.msc, and press Enter. - Look for the service named GameBar Presence Writer.
- Right-click and set the Startup type to Disabled.
- Click Stop if it’s currently running.
This change has helped numerous users avoid the glitch on the next reboot, especially gamers who have found GameBar to be more trouble than it’s worth.
3. Creating a Shortcut to Manually Restart Explorer
If the issue reoccurs frequently after booting up, adding a dedicated restart shortcut to your Startup folder can automate the fix every time your PC is turned on.
Here’s how:
- Right-click the Desktop and choose New > Shortcut.
- For location, type:
taskkill /f /im explorer.exe && start explorer.exe - Name it something like Restart Explorer.
- Right-click the shortcut, go to Properties > Advanced… and check Run as administrator.
- Place the shortcut in your Startup folder:
C:\Users\YourUsername\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
This ensures the graphical shell is refreshed early in the boot sequence.
4. Use PowerShell to Restart Apps and Focus
One user went further and created a PowerShell script to cycle through common processes that might interfere with focus. Here’s a simplified version:
Stop-Process -Name explorer -Force Start-Process explorer
To use it:
- Open Notepad, paste the code, and save the file with a
.ps1extension (e.g., fixFocus.ps1). - Right-click the file and choose Run with PowerShell.
You may need to set the PowerShell execution policy to allow scripts to run:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Permanent Fixes (When Available)
As of now, Microsoft has not released an official fix, though some users running Windows Insider builds mentioned that recent versions had already patched the window focus issue. If you’d like to try updating:
- Go to Settings > Windows Update.
- Click Check for updates.
- Optionally, join the Windows Insider Program via Settings > Windows Update > Windows Insider Program and opt for the Beta or Release Preview ring.
Why This Happened: Theories from the Community
Several Reddit users suspect this bug may be linked to lingering registry entries or corrupted services dating back to previous versions of Windows, which Microsoft has failed to account for. A few common speculations include:
- Conflict with ARM emulation processes for older apps.
- Windows Shell Experience Host malfunctioning under certain permissions contexts.
- Certain UI processes expecting permissions or environment variables no longer available post-update.
While the root cause remains unclear, these insights might guide power users or IT administrators trying to diagnose the problem more deeply.
Preventing Future Issues
Although it’s impossible to guarantee your system will never again succumb to post-update bugs, there are steps users can take:
- Manually create a restore point before installing updates.
- Delay non-critical updates by going to Windows Update Settings > Pause updates.
- Avoid third-party themes or shell enhancement apps that might break the UI.
Additionally, tools like O&O ShutUp10++ or Winaero Tweaker can offer more control over system behaviors and services that could interfere with Explorer or system focus routines.
Final Thoughts
System-breaking bugs are incredibly frustrating, especially when they impact core usability like focus and input. Until Microsoft releases a complete fix, community workarounds shared via Reddit stand as the best line of defense. Whether it’s restarting Explorer, disabling background services, or applying PowerShell scripts, these fixes restore control over your PC and allow you to stay productive.
If you’re experiencing this issue, don’t despair — you’re not alone. And thanks to the ingenuity of fellow users, some fairly simple steps can help get your system back on track.