Thanks for your response, I am looking for the script to add additional domain controllers. AD forest is already installed. I have a below script to promote singe DC, but getting error with authentication.
cls
$domainname="abc.net"
$newdcname= Read-Host -Prompt "Enter new DC name"
$newdcip= Read-Host -Prompt "Enter new DC IP Address"
$admincredentails= Get-Credential
Install-WindowsFeature -Name AD-Domain-services -IncludeManagementTools
Install-ADDSdomaincontroller -noglobalcatalog:$false -CreateDnsDelegation:$false -Criticalreplicationonly:$false -Databasepath "c:\Windows\NTDS" -Domainname $domainname -installdns:$true -Logpath "c:\Windows\NTDS" -Norebootoncompletion:$false -Sysvolpath "c:\windows\SYSVOL" -Force:$true -Confirm:$false
Write-Host "New Domain Controller promotion completed"