Last Windows 10 April Update added to my keyboads us_UK keyboard, which can’t be removed.

I’ve tried a lot of different options with standard Windows interfaces with no success, so I’ve did it thru Windows Powershell.

This method reset all keyboards and set new default one.

  1. Start Windows PowerShell – Windows button, type PowerShell and start it
  2. Check which are current available keyboards typing command
    Get-WinUserLanguageList
  3. Reset it typing :
    $1 = New-WinUserLanguageList en-US
    Set-WinUserLanguageList $1

    !Note that you should choose which to be your default language. For me it was en-US!

  4. Restart Windows
  5. Add what keyboard you need via standart Windows interfaces

The problem is solved, new DWORD regstry record should be added.

HKEY_CURRENT_USER\Software\Synaptics\SynTP\TouchPadPS2

or

HKEY_CURRENT_USER\Software\Synaptics\SynTP\TouchPadPS2TM2843 if exists in registry tree

if 2FingerTapAction exists should change value to 2 (2 means double click, 3 means middle button click). If not exists add new DWORD 32 bit with name 2FingerTabAction with value 2.

Restart windows and after that everything should be OK!