Howto turn off sticky keys (Ease of Access) via reg file?

Discussion in 'Windows 7' started by LQQL, Apr 20, 2010.

  1. LQQL

    LQQL MDL Addicted

    Apr 21, 2009
    773
    122
    30
    #1 LQQL, Apr 20, 2010
    Last edited: Apr 20, 2010
  2. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    #2 MasterDisaster, Apr 20, 2010
    Last edited by a moderator: Apr 20, 2017
    Method 1: Save the code below as a .reg file and run it.
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys]
    "Flags"="0"
    
    
    Method 2: Copy and paste the code in cmd prompt.
    Code:
    REG ADD "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 0 /f
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. LQQL

    LQQL MDL Addicted

    Apr 21, 2009
    773
    122
    30
    Oh, there it is. o_O I'm a bit puzzled at the moment. I didn't find that. :)

    Anyway, thank you very much! Works like a charm!
     
  4. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    Accessibility settings are actually in Current User, whereas you would have looked in Local Machine.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. LQQL

    LQQL MDL Addicted

    Apr 21, 2009
    773
    122
    30
    Yeah, a bit confusing. ;)