17 lines
404 B
Plaintext
17 lines
404 B
Plaintext
#
|
|
# Windows PowerShell-Skript für AD DS-Bereitstellung
|
|
#
|
|
|
|
Import-Module ADDSDeployment
|
|
Install-ADDSForest `
|
|
-CreateDnsDelegation:$false `
|
|
-DatabasePath "C:\WINDOWS\NTDS" `
|
|
-DomainMode "Win2025" `
|
|
-DomainName "beddo.cloud" `
|
|
-DomainNetbiosName "BEDDO" `
|
|
-ForestMode "Win2025" `
|
|
-InstallDns:$true `
|
|
-LogPath "C:\WINDOWS\NTDS" `
|
|
-NoRebootOnCompletion:$false `
|
|
-SysvolPath "C:\WINDOWS\SYSVOL" `
|
|
-Force:$true |