Windows 7 alt-tab window disappears to back when aero peek is enabled
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Quiet Intelligence
--
Chapters
00:00 Windows 7 Alt-Tab Window Disappears To Back When Aero Peek Is Enabled
02:04 Accepted Answer Score 7
03:11 Answer 2 Score 3
03:29 Answer 3 Score 3
04:25 Thank you
--
Full question
https://superuser.com/questions/183605/w...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows7 #aero #alttab #aeropeek
#avk47
ACCEPTED ANSWER
Score 7
There seem to be two main (known) culprits here.
- Desktop Gadgets (sidebar.exe). If you can live without them, try disabling them:
Right click desktop > select "View" > uncheck "Show desktop gadgets". This didn't work for me. - Microsoft Intellipoint v8.1+. This was the solution that worked for me. It seems when they added support for the Microsoft Touch Mouse, the updated Intellipoint software introduced this bug. To fix it:
Go to "Add or remove programs" and uninstall Microsoft Intellipoint. Instant fix, no reboot required.
If neither of those solutions work for you, I would try closing all open applications except for something innocuous, like notepad. Then open up your task manager and kill off suspicious processes one at a time until the problem is resolved. Obviously, make sure you don't kill a process that will destabilize your system. This could be a very tedious task.
This last post on the page in this thread helped me find the answer.
ANSWER 2
Score 3
After reading this forum thread I found, they seem to have concluded that it's an OS bug.
The closest you may get to a (consistent) solution is to switch to something like VistaSwitcher.
Oh, and sue the heck out of Microsoft too.
ANSWER 3
Score 3
Someone took the trouble to debug it and write a program to fix it:
https://randomascii.wordpress.com/2013/05/28/alttab-bug-worsened-by-ie-10-but-fix-found/
In all situations where the bug appeared there was a new window that was:
- Always-on-top (WS_EX_TOPMOST)
- Visible (WS_VISIBLE)
- Owned by ipoint.exe, sidebar.exe, or iexplore.exe
- Zero size and located at 0,0
...
In short, if you are currently experiencing this bug and you want to test my fix, run AltTabFixOnce.exe, look at the output, and see if it works. If the fix appears to work and you want to be rid of this scourge forever then copy AltTabFixContinuous to your startup folder. Both programs, and their source code, are available here. That is all.