Kbs

Fixing the "alt-tab freeze" bug in Windows 11

When I hold Left Alt + Tab, I am still able to select my desired window by tabbing, however when I release Alt, nothing happens. It still stuck at the small window selecting thing, I have to manually click on or hit ENTER to switch to the desired window instead of just releasing key. Looks like left Alt acts as right Alt. And the Solution is to add DWORD Value AltTabSettings and set it to 1 to the Registry:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer

How to create *.lib file from *.dll

Two command lines which I often forgot and googling again and again. If you have dynamic link library, but haven’t according *.lib file, then use

dumpbin /EXPORTS yourfile.dll > yourfile.exports
lib /def:yourfile.def /out:yourfile.lib