Windows Server 2008、Windows Server 2012 部署AD
1.安装活动目录角色:
Install-WindowsFeature AD-Domain-Services
2.导入活动目录的PowerShell命令模块:
Import-Module ADDSDeployment
3.搭建活动目录环境:
Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath:"C:\Windows\NTDS" -LogPath "C:\Windows\NTDS" -SysvolPath "C:\Windows\SYSVOL" -DomainMode "Win2012" -DomainName "contoso.com" -SafeModeAdministratorPassword (ConvertTo-SecureString 'abc123,' -AsPlainText -Force) -DomainNetbiosName "contoso" -ForestMode "Win2012" -InstallDns:$true -NoRebootOnCompletion:$false -Force:$true
Windows Server 2016、Windows Server 2019 部署AD
1.安装Active Directory服务
Install-windowsfeature -name AD-Domain-Services -IncludeManagementTools
2.创建Forest,命令执行成功之后会自动重启服务器,虽然使用-NoRebootOnCompletion:$true可以规避自动重启,但是如果要正常使用AD服务,还是要重启服务器。
Install-ADDSForest -DomainName example.com -SafeModeAdministratorPassword (ConvertTo-SecureString 'abc123,' -AsPlainText -Force) -DomainMode WinThreshold -DomainNetbiosName EXAMPLE -ForestMode WinThreshold -DatabasePath "C:\Windows\NTDS" -LogPath "C:\Windows\NTDS" -SysvolPath "C:\Windows\SYSVOL" -CreateDnsDelegation:$false -InstallDns:$true -NoRebootOnCompletion:$false -Force:$true