Set-WinUserLanguageList

Set-WinUserLanguageList

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

구문

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

자세한 설명

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.

매개 변수

-Force

별칭

없음

필수 여부

false

위치

named

기본값

없음

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-LanguageList<List<WinUserLanguage>>

별칭

없음

필수 여부

true

위치

1

기본값

없음

파이프라인 입력 적용 여부

true (ByValue)

와일드카드 문자 허용 여부

false

-Confirm

cmdlet을 실행하기 전에 확인 메시지가 표시됩니다.

필수 여부

false

위치

named

기본값

false

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

-WhatIf

cmdlet이 실행될 경우 결과 동작을 표시합니다. cmdlet이 실행되지 않습니다.

필수 여부

false

위치

named

기본값

false

파이프라인 입력 적용 여부

false

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 일반 매개 변수 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer 및 -OutVariable을 지원합니다. 자세한 내용은 다음을 참조하세요. about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216).

입력

입력 유형은 cmdlet에 파이프할 수 있는 개체의 유형입니다.

  • List<WinUserLanguage>

    List<WinUserLanguage> 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).

예제

Example 1

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

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

Example 2

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

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

관련 항목

Get-WinUserLanguageList

New-WinUserLanguageList