NAME
Set-WinUserLanguageList
SYNOPSIS
Sets the language list and associated properties for the current user account.SYNTAX
Set-WinUserLanguageList [-LanguageList]
> [-Force] [-Confirm] [-WhatIf] [
] DESCRIPTION
The Set-WinUserLanguageList cmdlet sets the current user language settings. These settings include input method,
spelling setting, text prediction setting, and handwriting input mode. For more information, see CultureInfo Class and Configurable Language and Cultural Settings.PARAMETERS
-Force [
Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false] -LanguageList
Required? true Position? 1 Default value Accept pipeline input? true (ByValue) Accept wildcard characters? false>
-Confirm [
Prompts you for confirmation before running the cmdlet. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false] -WhatIf [
Shows what would happen if the cmdlet runs. The cmdlet is not run. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false] This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
ListList is a list of WinUserLanguage objects that contain one or more languages and associated properties from the current user account's language list. The language object contains the following properties: --BCP-47 (READ). A standard language tag that is used to identify languages. For more information, see the
Internet Engineering Task Force (IETF) BCP 47 RFC.--Autonym (LP database) (READ). The name of the language in the language itself.
--English name (LP database) (READ). The name of the language in English.
--Localized name (LP database) (READ). The name of the language in the current Windows display language.
--Script (LP database) (READ). The writing system of the language.
--Input methods (READ/WRITE). A list of input method Tablet Input Panel (TIP) strings that are enabled for
this language. The enabled input methods are listed in the format Language ID: Keyboard layout ID.--Handwriting recognition input mode (READ/WRITE). This value is either 0 (freehand) or 1 (write each
character separately).OUTPUTS
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).RELATED LINKS
Online Version: http://go.microsoft.com/fwlink/p/?linkid=287354Get-WinUserLanguageList
New-WinUserLanguageList