PowrShell UICulture vs. Windows setting

◇◆丶佛笑我妖孽 提交于 2020-08-05 13:15:07

问题


During my tinkering with PS 5.1 under Win 10, related to the objective of question Fully change language for the current PowerShell session I came across a couple of related questions.

  1. Where is the Windows setting associated with the UICulture? I did not find "the "Keyboard and Languages" tab of the "Region and Language" control panel" as indicated here.

  2. Can this be persistently changed from within PS? All I found so far only persist in a session.


The setting Settings -> Time and Language -> Language -> Windows display language shows "Español (España)", and PS gives

> Get-UICulture ; [System.Threading.Thread]::CurrentThread.CurrentUICulture ; [CultureInfo]::CurrentUICulture ;
LCID             Name             DisplayName
----             ----             -----------
1033             en-US            English (United States)
1033             en-US            English (United States)
1033             en-US            English (United States)

without any intervening changes and in a session just launched.


回答1:


In .NET, cultures (System.Globalization.CultureInfo) are used to control two related, but independent aspects of (human) culture-specific for-display representations:

  • The effective UI culture, reflected in [cultureinfo]::CurrentUICulture, controls the (human) language that should be used for UI elements and end-user messages, such as error messages.

    • On Windows, its value is inherited from the so-called Windows display language, which is a persistent, user-specific setting that you can modify as described below.

    • In PowerShell, you can also query the effective UI culture via the automatic $PSUICulture variable (reports the culture name only) or the Get-UICulture cmdlet (reports a [cultureinfo] instance).
      Caveat: In Windows PowerShell, the value reported is the one that was in effect at session start-up time (which was the then-current persisted value), so any in-session changes are not reflected. This problem has been corrected in PowerShell [Core] v6+.

  • The effective culture, reflected in [cultureinfo]::CurrentCulture, controls the formats used to represent numbers, currency values, and date/time values.

    • On Windows, its value is inherited from the active locale, a.k.a. regional format, which are persistent, user-specific settings that you can modify as described below.

    • In PowerShell, you can also query the effective UI culture via the automatic $PSCulture variable (reports the culture name only) Get-Culture cmdlet (reports a [cultureinfo] instance).
      Caveat: In Windows PowerShell, the value reported is the one that was in effect at session start-up time, so any in-session changes are not reflected. This problem has been corrected in PowerShell [Core] v6+.


Switching to a different culture:

Interactive (GUI) methods, which are invariably persistent, for the current user:

  • UI culture, a.k.a Windows display language:

    • On Windows 10, open the Settings application (e.g., via Start Menu), go to category Time & Language, then click on Language in the sidebar on the left.

      • Shortcuts:

        • Open the Settings app quickly:

          • Use keyboard shortcut WinKey-i.
          • Run start ms-settings: (works from cmd too).
        • In Start Menu, simply type "Language" and select Language Settings from the result - this takes you directly to the relevant page in the Settings app.

        • Run intl.cpl to open the legacy Region Control Panel applet and click on the Language preferences link, which takes you to the relevant page in the Settings app.

  • Culture, a.k.a Regional format (locale):

    • On Windows 10, open the Settings application (e.g., via Start Menu), go to category Time & Language, then click on Region in the sidebar on the left, then select the desired culture under Regional format (the Region setting at the top does not control the culture).

      • Shortcuts:

        • In Start Menu, simply type "Regional format" and select Set regional format from the result - this takes you directly to the relevant page in the Settings app.

        • Run intl.cpl to open the legacy Region Control Panel applet and select the desired culture from the Format: drop-down list.

Note: These settings apply to .NET and non-.NET applications equally, assuming these applications are designed to respect the user's regional formats (locale, culture) and display language (UI culture) and come with language-specific resources.
By contrast, making in-session-only changes via [cultureinfo]::CurrentUICulture / [cultureinfo]::CurrentCulture (see below) applies to .NET applications only.

Programmatic methods:

  • Persistent, current-user changes (equivalents of the GUI methods):

    • UI culture, a.k.a Windows display language:

      • There is no Set-UICulture cmdlet, but in Windows 8 / Windows Server 2012 R2 and above you can use the Set-WinUILanguageOverride cmdlet.
        Note that the language pack for the language associated with the targeted culture must either come with the system or must have been downloaded previously.

      • Important: The change doesn't take effect until you either log off and back on or reboot.

    • Culture, a.k.a Regional format (locale):

      • Use the Set-Culture cmdlet, available in Windows 8 / Windows Server 2012 R2 and above.

      • Important: The change only takes effect in future PowerShell sessions, but no logoff / reboot is required.

  • In-session-only changes:

    • Important: Such changes are apply only to .NET-based applications. Therefore, calling a non-.NET console application from a PowerShell session in which culture was changed will have no impact on that console application. However, the change does take effect for calls to PowerShell cmdlets, scripts and functions. Even though the scope of the change is technically limited to the current thread, PowerShell also propagates the change to code executed in new threads (Start-ThreadJob and ForEach-Object -Parallel) as well as code executed on remote machines, via PowerShell remoting (e.g., Invoke-Command). Curiously, however, as of PowerShell 7.0, background jobs (Start-Job), which run in child processes, do not inherit the calling thread's culture - see this GitHub issue.

    • You can assign to [cultureinfo]::CurrentUICulture / [cultureinfo]::CurrentCulture to change the UI culture / culture for the current thread (only, non-persistently); e.g., the following command outputs the current date and time using the French culture:

      • [cultureinfo]::CurrentCulture = 'fr-FR'; Get-Date
    • Caveat: Due to a bug in Windows PowerShell, [cultureinfo]::CurrentUICulture and [cultureinfo]::CurrentCulture are unexpectedly reset to the session start-up values after every interactively submitted command; this problem has been fixed in PowerShell [Core] v6+ - see this answer.

    • The upshot is that if you want to run entire PowerShell sessions with different cultures than persistently configured, you can place assignments to [cultureinfo]::CurrentUICulture and [cultureinfo]::CurrentCulture in your $PROFILE file in PowerShell [Core] v6+, but you'll need a workaround for Windows PowerShell - see this answer.

      • Caveat: Windows PowerShell statically initializes $PSUICulture and $PSCulture and therefore these variables do not reflect the effective culture set by the workaround (which relies on modifying a non-public field); however, Get-UICulture / Get-Culture as well as [cultureinfo]::CurrentUICulture / [cultureinfo]::CurrentCulture do.



回答2:


This answer complements that by mklement0. The setting in a PS session is inherited from Win Settings -> Time and Language -> Language -> Display language for Windows upon starting the session.

So to change this "persistently" for all sessions one has to change the Windows setting. Alternatively, one can change this only for the PS session in profile.ps1, and this would not "taint" the Windows configuration.

I am not certain any of this can be managed by directly accessing HKEY_CURRENT_USER\Control Panel\International ([ref]) (or HKEY_CURRENT_USER\Volatile Environment?) from PS.

Note that (in Windows PowerShell) $PSUICulture is statically initialized at the time of the last Windows logon by retrieving the Windows setting above. So it is insensitive to the current PS setting (possibly changed during the current PS session). So $PSUICulture may differ from Get-UICulture. This would not apply to PowerShell Core.



来源:https://stackoverflow.com/questions/62909619/powrshell-uiculture-vs-windows-setting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!