在 Windows Server 2012 上配置 Active Directory 域服务
Configuring a Active Directory Domain Services on Windows Server 2012
我在 Windows Server 2012 上手动配置 Active Directory 域服务,每次启动服务器时使用以下 link。关于我们如何使用 PS.
自动化每个步骤的任何见解
https://support.rackspace.com/how-to/installing-active-directory-on-windows-server-2012/
我使用下面的 PS 脚本来安装和配置 AD。当我执行它时,它正在寻找参数域名。我需要明确添加这个吗?如果是,我如何在脚本中添加 with。
import-module servermanager
Get-Windowsfeature
Install-windowsfeature AD-domain-services
Import-Module ADDSDeployment
Write-Host "Updating system" $env:COMPUTERNAME "....." -ForegroundColor Green
Set-Service –Name remoteregistry –Computer $env:COMPUTERNAME -StartupType Automatic
Get-Service remoteregistry -ComputerName $env:COMPUTERNAME | start-service
Install-ADDSForest
-CreateDnsDelegation:$false
-DatabasePath "C:\Windows\NTDS"
-DomainMode "Win2012R2"
-DomainName "corp.contoso.com"
-DomainNetbiosName "THEGEEKSTUFF"
-ForestMode "Win2012R2"
-InstallDns:$true
-LogPath "C:\Windows\NTDS"
-NoRebootOnCompletion:$false
-SysvolPath "C:\Windows\SYSVOL"
-Force:$true
更新:
它要求 -DomainName
参数的值,因为它是强制性的,Install-ADDSForest
的代码应该在一行中,否则您必须使用反引号 ` 将其分成多行。最好在下面的行中使用。
Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath "C:\Windows\NTDS" -DomainMode "Win2012R2" -DomainName "corp.contoso.com" -DomainNetbiosName "THEGEEKSTUFF" -ForestMode "Win2012R2" -InstallDns:$true -LogPath "C:\Windows\NTDS" -NoRebootOnCompletion:$false -SysvolPath "C:\Windows\SYSVOL" -Force:$true
使用反引号:
Install-ADDSForest`
-CreateDnsDelegation:$false `
-DatabasePath "C:\Windows\NTDS" `
-DomainMode "Win2012R2" `
-DomainName "corp.contoso.com"`
-DomainNetbiosName "THEGEEKSTUFF" `
-ForestMode "Win2012R2" `
-InstallDns:$true`
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$false `
-SysvolPath "C:\Windows\SYSVOL"`
-Force:$true
问候,
kvprasoon
我在 Windows Server 2012 上手动配置 Active Directory 域服务,每次启动服务器时使用以下 link。关于我们如何使用 PS.
自动化每个步骤的任何见解https://support.rackspace.com/how-to/installing-active-directory-on-windows-server-2012/
我使用下面的 PS 脚本来安装和配置 AD。当我执行它时,它正在寻找参数域名。我需要明确添加这个吗?如果是,我如何在脚本中添加 with。
import-module servermanager
Get-Windowsfeature
Install-windowsfeature AD-domain-services
Import-Module ADDSDeployment
Write-Host "Updating system" $env:COMPUTERNAME "....." -ForegroundColor Green
Set-Service –Name remoteregistry –Computer $env:COMPUTERNAME -StartupType Automatic
Get-Service remoteregistry -ComputerName $env:COMPUTERNAME | start-service
Install-ADDSForest
-CreateDnsDelegation:$false
-DatabasePath "C:\Windows\NTDS"
-DomainMode "Win2012R2"
-DomainName "corp.contoso.com"
-DomainNetbiosName "THEGEEKSTUFF"
-ForestMode "Win2012R2"
-InstallDns:$true
-LogPath "C:\Windows\NTDS"
-NoRebootOnCompletion:$false
-SysvolPath "C:\Windows\SYSVOL"
-Force:$true
更新:
它要求 -DomainName
参数的值,因为它是强制性的,Install-ADDSForest
的代码应该在一行中,否则您必须使用反引号 ` 将其分成多行。最好在下面的行中使用。
Install-ADDSForest -CreateDnsDelegation:$false -DatabasePath "C:\Windows\NTDS" -DomainMode "Win2012R2" -DomainName "corp.contoso.com" -DomainNetbiosName "THEGEEKSTUFF" -ForestMode "Win2012R2" -InstallDns:$true -LogPath "C:\Windows\NTDS" -NoRebootOnCompletion:$false -SysvolPath "C:\Windows\SYSVOL" -Force:$true
使用反引号:
Install-ADDSForest`
-CreateDnsDelegation:$false `
-DatabasePath "C:\Windows\NTDS" `
-DomainMode "Win2012R2" `
-DomainName "corp.contoso.com"`
-DomainNetbiosName "THEGEEKSTUFF" `
-ForestMode "Win2012R2" `
-InstallDns:$true`
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$false `
-SysvolPath "C:\Windows\SYSVOL"`
-Force:$true
问候,
kvprasoon