Share via


Get-UICulture

Gets the current user interface (UI) culture settings in the operating system.

Syntax

Get-UICulture []

Description

The Get-UICulture cmdlet gets information about the current UI culture settings for Windows. The UI culture determines which text strings are used for user interface elements, such as menus and messages.

You can also use the Get-Culture cmdlet, which gets the current culture on the system. The culture determines the display format of items such as numbers, currency, and dates.

Examples

Example 1

get-uiculture

This command gets the current UI culture information.

Example 2

Get-UICulture | Format-List *

This command displays the values of all of the properties of the current UI culture in a list.

Example 3

(get-uiculture).calendar

This command displays the current values for the Calendar property of the current UI culture. Calendar is just one property of UI culture. To see all of the properties, type "get-uiculture | get-member".

Example 4

(get-uiculture).datetimeformat.shortdatepattern

This command displays the short date pattern for the current UI culture. To see all of the subproperties of the DateTimeFormat property of the UI culture, type "(get-uiculture).datetimeformat | gm".

Inputs

None

You cannot pipe input to this cmdlet.

Outputs

System.Globalization.CultureInfo, Microsoft.PowerShell.VistaCultureInfo

Get-UICulture returns an object that represents the current UI culture. In Windows PowerShell 3.0, it returns a CultureInfo object. In Windows PowerShell 2.0, it returns a VistaCultureInfo object.

Notes

  • You can also use the $PsCulture and $PsUICulture variables. The $PsCulture variable stores the name of the current culture, and the $PsUICulture variable stores the name of the current UI culture.