PowerShell Logo Small

Get-WinUserLanguageList



This is the built-in help made by Microsoft for the command 'Get-WinUserLanguageList', in PowerShell version 4 - as retrieved from Windows version 'Microsoft Windows 8.1 Enterprise' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets the language list for the current user account.

SYNTAX


Get-WinUserLanguageList [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-WinUserLanguageList cmdlet returns the current user language settings. These settings include input method, spelling setting, text prediction setting, and han
dwriting input mode. For more information, see CultureInfo Class and Configurable Language and Cultural Settings.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=287344
New-WinUserLanguageList
Set-WinUserLanguageList

REMARKS

<

Examples


Example 1

PS C:\>Get-WinUserLanguageList
LanguageTag : en-US

Autonym : English (United States)

EnglishName : English (United States)

LocalizedName : English (United States)

ScriptName : Latin

InputMethodTip : {0409:00000409}

Handwriting : False

LanguageTag : fr-FR

Autonym : français (France)

EnglishName : French (France)

LocalizedName : French (France)

ScriptName : Latin

InputMethodTip : {040c:0000040c}

Handwriting : False



This cmdlet returns the current user account's language list together with BCP-47 tags and the corresponding display name.




Example 2

PS C:\>(Get-WinUserLanguageList)[0].InputMethodTip
0409:00000409

0409:00010409



This cmdlet returns the list of currently enabled input methods as a TIP string.




Example 3

PS C:\>(Get-WinUserLanguageList)[0].autonym
English (United States)



This cmdlet returns the autonym property of the first item in the user's language list.