0 Pluspunkte 0 Minuspunkte
Wie kann ich einen Windows Server in Powershell zu einem Domain Controller in einer bestehenden Domäne heraufstufen?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Du konfigurierst Hostname und Netzwerkeinstellungen und installierst die Serverrolle

Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools

Danach stufst ihn hoch

Install-ADDSDomainController -DomainName "example.local" -InstallDns -Credential (Get-Credential) -DatabasePath "C:\Windows\NTDS" -LogPath "C:\Windows\NTDS" -SysvolPath "C:\Windows\SYSVOL" -Force
von