Set-WinUILanguageOverride

Set-WinUILanguageOverride

Sets the Windows UI language override setting for the current user account.

Syntax

Parameter Set: Default
Set-WinUILanguageOverride [[-Language] <CultureInfo> ] [ <CommonParameters>]

Detailed Description

The Set-WINUILanguageOverride cmdlet sets a user-preferred display language to use for the Windows user interface (UI). If no override setting is specified, the display language is dynamically determined from the user's language list (see Get-WinUserLanguageList and Set-WinUserLanguageList).

Parameters

-Language<CultureInfo>

Specifies a CultureInfo object.

Aliases

none

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • CultureInfo

    An object that contains the Windows UI language override for the current user account. For more information about the CultureInfo object, see CultureInfo Class.

Examples

Example 1: Set the Windows UI language override

This command sets the Windows UI language override to German (Germany) for the current user account.

PS C:\> Set-WinUILanguageOverride -Language de-DE

Example 2: Set the Windows UI language override to $Null

This command sets the Windows UI language override to $Null for the current user account.

PS C:\> Set-WinUILanguageOverride

Get-WinUILanguageOverride