Saturday, February 22, 2014

clink hide command line output at startup

reg query "hklm\software\wow6432node\microsoft\command processor" /v autorun

HKEY_LOCAL_MACHINE\software\wow6432node\microsoft\command processor
    autorun    REG_SZ    "C:\Program Files (x86)\clink\0.4\clink" inject --profile "~\clink" > nul


reg query "hklm\software\microsoft\command processor" /v autorun

HKEY_LOCAL_MACHINE\software\microsoft\command processor
    autorun    REG_SZ    "C:\Program Files (x86)\clink\0.4\clink" inject --profile "~\clink" > nul

Saturday, February 15, 2014

Disable Synaptics TouchPad corner taps - that maximize / restore window positions


Requires registry, since it is not exposed in UI settings control panel app.

This is for Toshiba Satellite P50-A.  Other Synaptic versions can be altered as needed.

Idea is to find all the CornerAction and CornerFlag registry entries under the Synaptics registry key and to turn them off, set to 0 for example.

Steps:

  1. Backup current settings by exporting HKEY_CURRENT_USER\Software\Synaptics contents to file
  2. Save following registry content to file: Synaptics.TurnOffCornerTaps.reg
  3. Import Synaptics.TurnOffCornerTaps.reg
  4. Restart machine


Synaptics.TurnOffCornerTaps.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Synaptics\SynTP\TouchPadPS2_3]
"TopLeftCornerAction"=dword:00000000
"TopRightCornerAction"=dword:00000000
"BottomRightCornerAction"=dword:00000000
"TopLeftCornerFlag"=dword:00000000
"TopRightCornerFlag"=dword:00000000
"BottomLeftCornerFlag"=dword:00000000
"BottomRightCornerFlag"=dword:00000000