How to find out which user is using a particular display language in Windows 8.1

Maxim V. Pavlov

I have a Windows 8.1 Enterprise machine used by several users. Each of them has a separate user account and settings.

Now that we need to upgrade to Windows 10, there is a problem with a full upgrade saving the applications and user data - that is user display language.

The system's default language is Russian. However, there is an English language pack installed on this system as well. I am assuming that is what disables the option to upgrade including the apps and data.

Is there a way, except for an obvious manual one, to list all users in the system along with their current display languages set, so I can track the one using English. I know someone has it in use since when I run lpksetup.exe I am unable to remove English, it says the user is using it.

The manual way I mentioned is to log in as each user and see the language selected, but I'd like to be able to track it down with Admin account.

Thanks in advance for the tip on how to get that info from the system.

lx07

You could check their value of PreferredUILanguages registry value. This is found in HKEY_CURRENT_USER\Control Panel\Desktop

Assuming they are logged off you could loop through all users, load their ntuser.dat registry hive from root of their user directory and retrieve this value.

For example, in powershell :

$Users = ls c:\users -exclude $env:UserName,(split-path $env:Public -leaf)

ForEach ($User in $Users){
  $Name=$User.Name
  reg load HKU\$Name "C:\Users\$Name\ntuser.dat"
  $Lang = (Get-ItemProperty "Registry::HKEY_USERS\$Name\Control Panel\Desktop").PreferredUILanguages
  Write-Host $Name $Lang
  reg unload HKU\$Name
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to find out which dependency caused a particular library to be downloaded?

From Java

How to find out in which commit a particular code was added?

From Dev

How to find out which changeset introduced the particular code (lines, block)

From Dev

How to find out which dependency caused a particular library to be downloaded?

From Dev

How to find out nameserver which resolves a particular host name

From Dev

How to find out which keybinding is represented by a particular character sequence

From Dev

How to find out the pull requests which include a change in a particular file?

From Dev

How to find out which package a user belongs to?

From Dev

How to find out on what framework or in which language was the website created?

From Dev

Find out which method consumes less memory on Windows Phone 8

From Dev

How to find out what distros are using particular Linux version?

From Dev

how do i find out which network profile is currently connected to wifi using netsh command on windows

From Java

How to find out which microphone device user gave permission to?

From Dev

How to find out which radio button chosen by the user

From Dev

How to find out which radio button the user selected in Javascript?

From Dev

How can I find out which user deleted a directory?

From Dev

How can i find the changelist which made changes in a particular line on a particular file using Perforce command

From Dev

How to find out which package a particular file under /usr/share came from?

From Java

How can you find out which process is listening on a port on Windows?

From Dev

How to find out which system component disabled the hibernation? (Windows 7)

From Dev

How to find out which program is being run for command prompt (WINDOWS)?

From Dev

How to find out which windows version my product key matches?

From Dev

How to find out which application opened a handle to physical drive on Windows?

From Dev

How to find all the gsp pages in a whole application which are authorized for a particular user role in grails?

From Dev

How to find out which particular e-mail in Thunderbird/Icedove that contains malware Doc.Dropper.Agent-1552723 pointed out by Clamscan?

From Java

How find out which process is using a file in Linux?

From Java

How to find out which Play version I'm using?

From Dev

How to find out which implementation slf4j is using

From Dev

How to find out which Port number a process is using

Related Related

  1. 1

    How to find out which dependency caused a particular library to be downloaded?

  2. 2

    How to find out in which commit a particular code was added?

  3. 3

    How to find out which changeset introduced the particular code (lines, block)

  4. 4

    How to find out which dependency caused a particular library to be downloaded?

  5. 5

    How to find out nameserver which resolves a particular host name

  6. 6

    How to find out which keybinding is represented by a particular character sequence

  7. 7

    How to find out the pull requests which include a change in a particular file?

  8. 8

    How to find out which package a user belongs to?

  9. 9

    How to find out on what framework or in which language was the website created?

  10. 10

    Find out which method consumes less memory on Windows Phone 8

  11. 11

    How to find out what distros are using particular Linux version?

  12. 12

    how do i find out which network profile is currently connected to wifi using netsh command on windows

  13. 13

    How to find out which microphone device user gave permission to?

  14. 14

    How to find out which radio button chosen by the user

  15. 15

    How to find out which radio button the user selected in Javascript?

  16. 16

    How can I find out which user deleted a directory?

  17. 17

    How can i find the changelist which made changes in a particular line on a particular file using Perforce command

  18. 18

    How to find out which package a particular file under /usr/share came from?

  19. 19

    How can you find out which process is listening on a port on Windows?

  20. 20

    How to find out which system component disabled the hibernation? (Windows 7)

  21. 21

    How to find out which program is being run for command prompt (WINDOWS)?

  22. 22

    How to find out which windows version my product key matches?

  23. 23

    How to find out which application opened a handle to physical drive on Windows?

  24. 24

    How to find all the gsp pages in a whole application which are authorized for a particular user role in grails?

  25. 25

    How to find out which particular e-mail in Thunderbird/Icedove that contains malware Doc.Dropper.Agent-1552723 pointed out by Clamscan?

  26. 26

    How find out which process is using a file in Linux?

  27. 27

    How to find out which Play version I'm using?

  28. 28

    How to find out which implementation slf4j is using

  29. 29

    How to find out which Port number a process is using

HotTag

Archive