I want to enable/disable the Windows sticky keys feature from a program. Is there a way to do it by calling a command line script or using vbscript or similar?
I want to enable/disable the Windows sticky keys feature from a program. Is there
Share
Yes. Call SystemParametersInfo with SPI_SETSTICKYKEYS as first argument.
You will need to use P/Invoke to call the Win32 API function, though, if you use .NET.