现在的位置: 首页 > Windows > Windows Server > 正文
使用PowerShell提升服务器为域控制器
2013年03月07日 Windows Server ⁄ 共 313字 使用PowerShell提升服务器为域控制器已关闭评论 ⁄ 被围观 14,253 views+

命令:

Import-Module ADDSDeployment
Install-ADDSForest `
-CreateDnsDelegation:$false `
-DatabasePath "C:\Windows\NTDS" `
-DomainMode "Win2008R2" `
-DomainName "ww.inc" `
-DomainNetbiosName "WW" `
-ForestMode "Win2008R2" `
-InstallDns:$true `
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$false `
-SysvolPath "C:\Windows\SYSVOL" `
-Force:$true

抱歉!评论已关闭.

×