Windows PowerShell Script for automated AD DS Deployment

Import-Module ADDSDeployment
Install-ADDSForest `
-CreateDnsDelegation:$false
`
-DatabasePath “C:\Windows\NTDS” `
-DomainMode "WinThreshold" `
-DomainName “home.local” `
-DomainNetbiosName "HOME" `
-ForestMode “WinThreshold” `
-InstallDns:$true `
-LogPath “C:\Windows\NTDS” `
-NoRebootOnCompletion:$false `
-SysvolPath “C:\Windows\SYSVOL” `
-Force:$true