我正在尝试使用 Active Directory 自动安装到服务器核心盒吗?

我正在尝试使用 Active Directory 自动安装到服务器核心盒吗?

我正在尝试使用 Active Directory 自动安装到服务器核心盒吗?

我认为我需要设置一个脚本。关于如何执行此操作,您有什么想法吗?

答案1

如果这是 Windows Server 2012,您可以在 PowerShell 中完成所有操作

PS:\> Import-Module ServerManager
PS:\> Add-WindowsFeature AD-Domain-Services
PS:\> Install-ADForest -DomainName corp.contoso.com

如果您使用的是 Windows Server 2008 R2,那么您可以按照上述方式安装角色,但随后您将编写 dcpromo 脚本进行无人值守安装:

[DCInstall]
 InstallDNS=Yes
 ConfirmGC=Yes
 NewDomain=forest
 NewDomainDNSName=corp.contoso.com
 DomainNetBiosName=CORP
 ReplicaOrNewDomain=domain
 ForestLevel=4
 DomainLevel=4
 DatabasePath="%systemroot%\\ntds"
 LogPath="%systemroot%\\ntds"
 SYSVOLPath="%systemroot%\\SYSVOL"
 SafeModeAdminPassword=C0mpl3xP@ssw0rd!
 RebootOnCompletion=Yes

相关内容