Samuel,
Thanks for the challenge! :D
Open an Administrator PowerShell window by right-clicking on Start or pressing WinKey+X and select
Windows PowerShell (Admin)
Then, copy and paste the following commands into the window. All the lines can be copied & pasted at once.
Copy up to the final 'e' of "-Force":
$Remap = New-Object -TypeName byte[] -ArgumentList 20
$Remap[8] = 2
$Remap[12] = 0x53
$Remap[13] = 0xe0
$Remap[14] = 0x52
$Remap[15] = 0xe0
$key = 'HKLM:\SYSTEM\CurrentControlSet\Control\Keyboard Layout'
New-ItemProperty -Path $key -Name 'ScanCode Map' -Value $Remap -Force

Once copied, press <Enter> and the commands will execute:

Then close all windows and Restart.
Tested and worked on my machine.
Keith