"Because your camera shouldn't be picky"
This version is a ground-up rewrite of v1.0, utilizing a high-performance native C++ core. It sits passively in your system architecture to automate hardware state transitions during authentication cycles.
Many high-end laptops and 2-in-1s feature Windows Hello facial recognition, which utilizes two distinct front-facing sensors: a standard RGB (color) camera and an Infrared (IR) sensor.
In theory, they should work in harmony. In practice, they behave like two siblings fighting over a single toy. Upon waking from sleep or locking the screen, Windows frequently experiences a brief existential crisis. It attempts to authenticate your face using the slower, light-dependent RGB camera instead of the instant IR sensor, or it gets hopelessly confused trying to match live IR data against an RGB-based baseline template.
The result? You are left staring blankly at your screen during an endless "Looking for you" loading loop, only to be forced to type your PIN like a peasant.
Fortunately, Windows Hello can be tricked into working flawlessly by simply disabling the RGB color camera right before the system locks. Deprived of its favorite distraction, Windows is forced to use the superior IR sensor, resulting in near-instant unlocks—even in pitch-black darkness.
This program automates that exact act of digital sabotage. It safely turns off your RGB camera the moment you lock your PC, and politely turns it back on once you are safely logged in.
-
Session Monitoring: The utility continuously tracks active Windows Session states.
-
On Lock: It instantly disables the conflicting or selected RGB sensor.
-
On Unlock: It re-enables the camera hardware immediately to restore normal operation.
Note: Because this program only triggers during lock and unlock events, it will not assist you if Windows Hello pops up while you are actively using the PC (such as authenticating browser passkeys or app logins). For those moments, your cameras will just have to figure it out themselves.
-
Native SetupAPI & Configuration Manager Integration: Bypasses sluggish PowerShell scripts and command-line wrappers entirely. It utilizes direct C++ calls to the Windows kernel's Plug and Play (PnP) subsystem (
SetupDiCallClassInstallerandCM_Enable_DevNode), allowing for near-instantaneous hardware toggling. -
Direct Window Message Hooking (
WndProc): Instead of relying on a slow background loop or Task Scheduler to poll for session changes, the app hooks directly into the Windows Message pipeline (WM_WTSSESSION_CHANGE). This allows the app to react to lock/unlock events in milliseconds. -
Low-Level Power Interrupts: Registers directly for
GUID_LIDSWITCH_STATE_CHANGEandGUID_POWER_BUTTON_TIMESTAMPevents viaRegisterPowerSettingNotification. This allows the application to detect physical laptop lid closures and power button presses instantly, beating standard Windows Hello wake sequences to the punch. -
Intelligent Auto-Targeting (
MI_00Scanning): The application dynamically scans theDIGCF_PRESENTdevice tree on startup and parses interface substrings to automatically locate the correct RGB sensor interface (MI_00), eliminating user guesswork during setup. -
Zero-Overhead Background Daemon Mode: When launched as a background task, the application drops its visual footprint to zero (
Opacity = 0,ShowInTaskbar = false) and rests entirely passively. It uses 0% CPU while waiting for native OS interrupt signals, maintaining absolute battery efficiency.
-
Hardware Event Debouncing (Thrash Protection): Windows is notorious for sending duplicate lock/unlock or power signals in rapid succession. The application engine utilizes a strict 1500ms cooldown threshold timestamp comparison to intercept and neutralize duplicate signals, preventing aggressive hardware driver thrashing or infinite toggle loops.
-
Check-Before-Change Logic: Before dispatching command signals to the hardware driver, the app actively queries the current Device Node Status. If the camera is already in the requested state, it cleanly aborts the operation. This saves CPU cycles and prevents the Windows FrameServer from crashing due to redundant driver calls.
-
Triple-Pass Verification & Self-Healing: It doesn't just blindly send a disable/enable command. It executes a verification loop up to three times to confirm the hardware state actually changed. If Windows ignores the request, the application automatically re-enumerates the device node (
CM_Reenumerate_DevNode) and forces a driver reset. -
Atomic Single-Instance Mutex: Utilizes a native Win32 Named Mutex (
Global\WindowsHelloFix_AppMutex) to absolutely guarantee that only one instance of the hardware manager can run at a time, preventing data race corruption and crossed wires. -
Ghost-Process Recovery: If a user tries to launch the app while a background instance is frozen or stuck, the GUI detects the dead lock and offers a "Force Reset" path. This instantly kills the ghost process, forces the camera back on, and restarts the application cleanly.
-
Shutdown & Logoff Protection: Intercepts
WM_ENDSESSIONandWM_QUERYENDSESSIONsystem messages. Right before Windows powers down or logs the user out, the application executes a final override to disable the conflicting RGB camera, ensuring the biometric template remains pure for the next cold boot. -
String Sanitization (
TrimTrailingChars): Hardened C++ string parsing automatically strips out invisible carriage returns (\r\n) from the configuration file, preventing silent string-matching failures when the app compares saved settings to live hardware identifiers.
-
Native SetupAPI & Configuration Manager Integration: Bypasses sluggish PowerShell scripts and command-line wrappers entirely. It utilizes direct C++ calls to the Windows kernel's Plug and Play (PnP) subsystem (
SetupDiCallClassInstallerandCM_Enable_DevNode), allowing for near-instantaneous hardware toggling. -
Direct Window Message Hooking (
WndProc): Instead of relying on a slow background loop or Task Scheduler to poll for session changes, the app hooks directly into the Windows Message pipeline (WM_WTSSESSION_CHANGE) to react to lock/unlock events in milliseconds. -
Low-Level Power Interrupts: Registers directly for
GUID_LIDSWITCH_STATE_CHANGEandGUID_POWER_BUTTON_TIMESTAMPevents viaRegisterPowerSettingNotification. This allows the application to detect physical laptop lid closures and power button presses instantly, beating standard Windows Hello wake sequences to the punch. -
Intelligent Auto-Targeting (
MI_00Scanning): The application dynamically scans theDIGCF_PRESENTdevice tree on startup and parses interface substrings to automatically locate the correct RGB sensor interface (MI_00), eliminating user guesswork during setup. -
Zero-Overhead Background Daemon Mode: When launched as a background task, the application drops its visual footprint to zero (
Opacity = 0,ShowInTaskbar = false) and rests entirely passively. It uses 0% CPU while waiting for native OS interrupt signals, maintaining absolute battery efficiency.
-
Operational Scope: This utility is specifically engineered to handle Windows Sign-In (Lock/Unlock) and Sign-Out events exclusively.
-
Application Conflicts: It does NOT currently handle Windows Hello prompts triggered inside third-party applications or internal Windows system settings. Attempting to implement system-wide fixes during development introduced hardware collision issues that rendered the release unstable, resulting in the feature being omitted from this version.
Installation is very simple. Simply run the setup file and go through the installation wizard to get everything configured automatically.
Once the app starts, select your RGB camera from the drop-down menu, it should have the same name as in Device Manager.
And uninstallation is equally simple. You can remove the program using either of the following methods: 🗑️
-
Run the
Uninstall.exefile located directly within the installation directory. -
Search for Windows Hello Fix in the Windows Start Menu and select Uninstall.
-
Locate Windows Hello Fix within the Windows Settings Installed Apps list and choose Uninstall.
This tool directly modifies hardware states using built-in Windows utilities. While perfectly safe and easily reversible, ensure you are selecting the correct RGB camera during setup. Do not select your IR sensor, or Windows Hello will stop working entirely!
Windows Hello face recognition slow fix, prioritise IR camera over RGB Windows 11, Windows Hello looking for you loop, disable RGB camera for face unlock, infrared camera biometric enrollment trick, Windows Hello hardware conflict solution.