Division By Zero

ゼロで割る

Windows Server 2012R2 Essentialsでトップレベルドメインを設定する

Windows Server 2012R2 Essentialsでトップレベルドメインを.local以外に設定しようとしてつまづいたのでメモ。

This is by design to simplify user experiences.

http://support.microsoft.com/kb/2830511

ってあるけどホントかな。cfg.iniを作成してリムーバブルメディアに置く方法が書かれているが、今回、構成ウィザードをキャンセルして、PowerShellで設定してみた。

1. Enter the Powershell prompt.


2. To get the credentials to create your domain admin account enter the following:
PS C:\> $cred = Get-Credential –UserName LocalAdmin –Message “Please specify the password for your new administrator account.”


3. To start the domain controller promotion commandlet enter the following:
PS C:\> Start-WssConfigurationService -CompanyName “Contoso” -DNSName “Test.Contoso.com” -NetBiosName “Test” -ComputerName “YourServerName” –NewAdminCredential $cred -Setting All

http://carlosxmunoz.wordpress.com/2013/12/15/how-to-specify-windows-2012r2-essentials-top-level-domain-tld-suffix/

うまくいきました!