7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Bluemix IaaS (旧SoftLayer) で Windows Server 2016 の日本語化

Last updated at Posted at 2017-08-25

目的

クラウドで払い出される Windows OS は、デフォルトで英語の UI になっているので、すぐ日本語で使えるようにしたいと思います。

手動で日本語化(Powershell)

言語 (日本語) の追加、優先順位を最上位に設定

PowerShell
Set-WinUserLanguageList -LanguageList ja-JP,en-US -Force

言語パックの入手(インターネット接続が必要)

PowerShell
$LpUrl = "http://fg.v4.download.windowsupdate.com/c/msdownload/update/software/updt/2016/09/lp_9a666295ebc1052c4c5ffbfa18368dfddebcd69a.cab"
$LpTemp = "C:\Users\Administrator\Desktop\lp_9a666295ebc1052c4c5ffbfa18368dfddebcd69a.cab"
Invoke-WebRequest $LpUrl -OutFile $LpTemp

言語パックのインストール

PowerShell
Add-WindowsPackage -PackagePath $LpTemp -Online

再起動(必要)

PowerShell
Restart-Computer -Force

Windows の表示言語の上書き設定

PowerShell
Set-WinUILanguageOverride ja-JP

Unicode ではないプログラムの言語の設定

PowerShell
Set-WinSystemLocale 1041

[アプリウィンドウごとに異なる入力方式を設定する]にチェック

PowerShell
Set-WinLanguageBarOption -UseLegacySwitchMode

[主な使用場所]を日本にする

PowerShell
Set-WinHomeLocation 0x7A

日付、時刻、および数値の形式を表示言語と一致

PowerShell
Set-WinCultureFromLanguageListOptOut -OptOut $False

[タイムゾーン]を日本にする

PowerShell
Set-TimeZone -Id "Tokyo Standard Time"

再起動(必要)

PowerShell
Restart-Computer -Force

自動で日本語化(プロビジョニングスクリプト)

仮想サーバー用に、こちらに作りましたので、ご活用ください。
Win2016_Japanese.bat

使い方

  • 注文時、OS リロード時に使用可能です
  • プロビジョニングスクリプトは、Public Uplink 付きのサーバーで使用してください
  • プロビジョニングスクリプトに上記リンクURLを指定してください
  • 言語パック入手後、スクリプト内で Public Uplink を無効にします
  • メタデータ(仮想サーバーのみ)に初期パスワードを入力してください
    • メタデータの設定がないと、パスワードなし、の状態になってしまいます

参考

参考:NTP設定確認

time.service.softlayer.com になっているか確認します。

PowerShell
PS C:\Users\Administrator> w32tm /query /status
Leap Indicator: 3(last minute has 61 seconds)
Stratum: 0 (unspecified)
Precision: -6 (15.625ms per tick)
Root Delay: 0.1392917s
Root Dispersion: 20.8932259s
ReferenceId: 0x00000000 (unspecified)
Last Successful Sync Time: 8/12/2017 5:55:21 AM
Source: time.service.softlayer.com,0x9
Poll Interval: 6 (64s)

なっていない場合は、Powershellで以下のコマンドを打ちます。

PowerShell
w32tm /config /manualpeerlist:time.service.softlayer.com /syncfromflags:MANUAL
Stop-Service w32time
Start-Service w32time
7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?