PowerShell Logo Small

Set-WinUserLanguageList



This is the built-in help made by Microsoft for the command 'Set-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

Sets the language list and associated properties for the current user account.

SYNTAX


Set-WinUserLanguageList [-LanguageList] <List<WinUserLanguage>> [-Force] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-WinUserLanguageList cmdlet sets the current user language settings. These settings include input method, spelling setting, text prediction setting, and handwr
iting 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=287354
Get-WinUserLanguageList
New-WinUserLanguageList

REMARKS

<

Examples


Example 1

PS C:\> $OldList = Get-WinUserLanguageList
PS C:\> $OldList.Add("fr-FR")
PS C:\> Set-WinUserLanguageList $OldList



This command adds the language French (France) to the user's language list.




Example 2

PS C:\>$1 = New-WinUserLanguageList en-US
PS C:\>$1[0].Handwriting = 1
PS C:\> Set-WinUserLanguageList $1



This command changes the handwriting setting for the language English (United States) in the user’s language list to ON (write each character separately).