2012年12月20日木曜日

Windows Serve 2012 PowershellでADドメインサービスの追加、構成、削除

  • このエントリーをはてなブックマークに追加


Windows Server 2012でPowershellコマンドを使ってActive Directoryドメインサービスのインストール、構成、DC降格などを試してみました。

・Active Directoryドメインサービスの役割の追加

Add-WindowsFeature -Name AD-Domain-Services

 

・Active Directoryドメインサービスの構成

$password = ConvertTo-SecureString -String "P@ssw0rd" -AsPlainText -Force

Import-Module ADDSDeployment
Install-ADDSForest `
-CreateDnsDelegation:$false `
-DatabasePath "C:\Windows\NTDS" `
-DomainMode "Win2012" `
-DomainName "test.local" `
-DomainNetbiosName "TEST" `
-ForestMode "Win2012" `
-InstallDns:$true `
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$false `
-SysvolPath "C:\Windows\SYSVOL" `
-Force:$true `
-SafeModeAdministratorPassword $password

 

・既存ドメインに新しいDC(ドメイン参加済みのサーバー)を追加し、構成する(リモートで実行する)

Install-WindowsFeature -Name AD-Domain-Services -ComputerName WS201202

$password = ConvertTo-SecureString -String "P@ssw0rd" -AsPlainText -Force
Invoke-Command -ComputerName WS201202 -ScriptBlock `
{Import-Module ADDSDeployment;Install-ADDSDomainController `
-DomainName "contoso.local" `
-NoGlobalCatalog:$False `
-CreateDNSDelegation:$False `
-Credential (Get-Credential) `
-CriticalReplicationOnly:$False `
-DatabasePath "C:\Windows\NTDS" `
-InstallDNS:$True `
-LogPath "C:\Windows\NTDS" `
-NoRebootOnCompletion:$False `
-SafeModeAdministratorPassword $password `
-SiteName "Default-First-Site-Name" `
-SysVolPath "C:\Windows\SysVol" }

 

・コマンドでインストールする際にAD管理ツール(Active Directory ユーザーとコンピューター、ADSIエディターなど)がインストールされていないため、別途インストールする必要がある

Add-WindowsFeature RSAT-ADDS

 

・DCを降格する

Import-Module ADDSDeployment
Uninstall-ADDSDomainController `
-DemoteOperationMasterRole:$true `
-IgnoreLastDnsServerForZone:$true `
-LastDomainControllerInDomain:$true `
-RemoveApplicationPartitions:$true `
-Force:$true

Import-Module ActiveDirectory
Uninstall-ADDSDomainController -IgnoreLastDCInDomainMismatch `
-RemoveApplicationPartitions

 

・DNS、Active Directoryドメインサービスの役割を削除する

Unintall-WindowsFeature DNS

Uninstall-WindowsFeature AD-Domain-services


Windows Server 2012テクノロジ入門 (TechNet ITプロシリーズ)

新品価格
¥4,935から
(2012/12/20 20:49時点)

この記事がお役にたちましたらシェアをお願いします:)

  • このエントリーをはてなブックマークに追加

0 件のコメント:

コメントを投稿