[This is preliminary documentation and is subject to change. Blank topics are included as placeholders.]

Enables you to modify the culture (that is, the language and regional settings) used by the Communications Server Management Shell.

Syntax

Set-CsUICulture -Culture <String> [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]

Parameters

Parameter Required Type Description

Culture

Required

String

Enables you to specify the culture used for the Communications Server Management Shell. (Note that culture can only be set to Communications Server languages and culture available on your computer.) The Culture property must be set to one of the following string values:

ca-Es – Catalan (Catalan)

da-DK – Danish (Denmark)

de-DE – German (Germany)

en-AU – English (Australia)

en-CA – English (Canada)

en-GB – English (United Kingdom)

en-IN – English (India0

en-US – English (US)

es-ES – Spanish (Spain)

es-MX – Spanish (Mexico)

fi-FI – Finnish (Finland)

fr-CA – French (Canada)

fr-FR – French (France)

it-IT – Italian (Italy)

ja-JP – Japanese (Japan)

ko-KR – Korean (Korea)

nb-NO – Norwegian, Bokmal (Norway)

nl-NL – Dutch (Netherlands)

pl-PL – Polish (Poland)

pt-BR – Portuguese (Brazil)

pt-PT – Portuguese (Portugal)

ru-RU – Russian (Russia)

sv-SE – Swedish (Sweden)

zh-CN – Chinese (People’s Republic of China)

zh-HK – Chinese (Hong Kong S.A.R.)

zh-TW – Chinese (Taiwan)

For example: -Culture "nl-NL".

Alternatively, you can set the culture to "default". When you do that, the Communications Server Management Shell will use the same culture as the operating system.

WhatIf

Optional

Switch Parameter

Describes what would happen if you executed the command without actually executing the command.

Confirm

Optional

Switch Parameter

Prompts you for confirmation before executing the command.

Detailed Description

Although Microsoft Communications Server is available in multiple languages, the software is not a true MUI (multilingual user interface) application. Among other things, this means that the user interface for the Communications Server Management Shell does not change languages any time you change the operating system language. For example, suppose you have installed the US English version of Microsoft Communications Server and are also running the Windows operating system under US English. If you change the operating system culture (that is, the language and regional settings) to Danish, the Communications Server Management Shell will not automatically follow suit; instead, the Management Shell user interface (including error messages and help text) will remain in US English. If you need to change the culture for the Management Shell, you must run the Set-CsUICulture cmdlet.

Two things to keep in mind when using Set-CsUICulture. First, the cmdlet can only be used to modify Management Shell settings on the local computer; Set-CsUICulture cannot change a remote instance of Communications Server Management Shell. This is due to the fact that all the users of a computer share the same instance of the Management Shell. That means that allowing a remote user to change the culture would instantly change the culture for any other users of the Management Shell, including the local user. Second, you cannot change the culture unless you have downloaded and installed the appropriate language packs. If you install the US English version of Microsoft Communications Server then US English will be the only version (and the only culture) available to you unless you downloaded and install additional language packs.

Return Types

Set-CsUICulture does not return any values or objects. Instead, the cmdlet modifies existing instances of the System.Globalization.CultureInfo class.

Examples

-------------------------- Example 1 ------------------------

Copy Code
Set-CsUICulture -Culture "fr-FR"

The command shown in Example 1 sets the culture for the Communications Server Management Shell to French (France). This is done by using the language code fr-FR.

-------------------------- Example 2 ------------------------

Copy Code
Set-CsUICulture -Culture "default"

The preceding command sets the culture for the Communications Server Management Shell to the default culture value. The default value is simply the culture setting used by the Windows operating system.