用命令实现活动目录(AD域控)的创建

在PowerShell上执行以下命令:


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" -DomainNetbiosName "contoso" -ForestMode "Win2012" -InstallDns:$true -NoRebootOnCompletion:$false -Force:$true




转载请注明出处:http://blog.csdn.net/xiezuoyong/article/details/19039587

你可能感兴趣的:(命令,powershell,ad,活动目录,windowsserver)