未分類

PowerShell - カルチャーを扱う

カルチャーを扱う方法について説明します。

使用可能な全てのカルチャーを出力

[System.Globalization.CultureInfo]::GetCultures([System.Globalization.CultureTypes]::AllCultures)

現在のカルチャーを取得

[System.threading.Thread]::CurrentThread.CurrentCulture
[System.Globalization.CultureInfo]::CurrentCulture

現在のカルチャーを一時的に中国語 (台湾) に変更して日付と時刻を表示

$CurrentLocal = [System.Threading.Thread]::CurrentThread.CurrentCulture
[System.Threading.Thread]::CurrentThread.CurrentCulture = "zh-TW"
Get-Date
[System.Threading.Thread]::CurrentThread.CurrentCulture = $CurrentLocal

-未分類