0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WindowsのServer CoreにActive Directoryをインストールする

Last updated at Posted at 2020-05-02

概要

・WindowsのServer CoreにActive Directoryをインストールする。
・設定は最低限のみ実施。

環境

・ハイパーバイザ:Hyper-V(Windows 10 1903)
・OS :Window Server 2016

手順

Install-WindowsFeature AD-Domain-Services,GPMC -IncludeManagementTools

$pass = ConvertTo-SecureString -AsPlainText '<パスワード>' -Force

Install-ADDSForest -DomainName <ドメイン名> -ForestMode Default -DomainMode Default -InstallDns:$true -CreateDnsDelegation:$false -DomainNetbiosName <NETBIOS名> -DatabasePath C:\Windows\NTDS -LogPath C:\windows\NTDS -SysvolPath C:\windows\sysvol -NoRebootOnCompletion:$false -Force:$true -SafeModeAdministratorPassword $pass

その他

・デスクトップエクスペリエンスを導入したサーバからADの管理ツールやDNSサーバツールを使用して管理することも可能

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?