The option 'Let me set a different input method for each app window'

Hi all,

I always check the box 'Let me set a different input method for each app window' in the language preferences on every machine but after some time it suddenly unchecks itself. How to make it stay checked?

Thanks, Vlad

May 27th, 2015 3:25am

http://superuser.com/questions/839993/find-registry-key-for-windows-8-per-application-input-method-setting

try this powershell

$prefMask = (Get-ItemProperty -Path 'HKCU:\Control Panel\Desktop' -Name 'UserPreferencesMask').UserPreferencesMask
if (($prefMask[4] -band 0x80) -eq 0) {
  $prefMask[4] = ($prefMask[4] -bor 0x80)
  New-ItemProperty -Path 'HKCU:\Control Panel\Desktop' -Name 'UserPreferencesMask' -Value $prefMask -PropertyType ([Microsoft.Win32.RegistryValueKind]::Binary) -Force | Out-Null
}
please restart after that

Free Windows Admin Tool Kit Click here and download it now
May 27th, 2015 5:09am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics