Hello,
I am on the process of getting the Windows Server 2019 to a Domain Controller and I am getting a failure at step 17. Where I try to install the Domain Controller services after getting the domain and credentials:
Install-ADDSDomainController -NoGlobalCatalog:$false -CreateDnsDelegation:$false -CriticalReplicationOnly:$false -DatabasePath "C:\Windows\NTDS" -DomainName $currentDomain -InstallDns:$true -LogPath "C:\Windows\NTDS" -NoRebootOnCompletion:$true -SysvolPath "C:\Windows\SYSVOL" -credential $cred -Force:$true -Confirm:$false -SafeModeAdministratorPassword (ConvertTo-SecureString 'ADRestoreModePassword_ChangeThis' -AsPlainText -Force)
I made sure to update the ADRestoreModePassword and configured it to the correct password I know. When I check the logs I got the following towards the end of the Adprep log file:
[Status/Consequence]
Adprep merged the existing default security descriptor with the new access control entry (ACE).
[2021/07/18:12:34:45.289]
Adprep was about to call the following LDAP API. ldap_add_s(). The entry to add is cn=c7f717ef-fdbe-4b4b-8dfc-fa8b839fbcfa,cn=Operations,cn=ForestUpdates,CN=Configuration,DC=pavilion,DC=local.
[2021/07/18:12:34:45.320]
LDAP API ldap_add_s() finished, return code is 0x0
[2021/07/18:12:34:45.320]
Adprep successfully created the Active Directory Domain Services object cn=c7f717ef-fdbe-4b4b-8dfc-fa8b839fbcfa,cn=Operations,cn=ForestUpdates,CN=Configuration,DC=pavilion,DC=local.
[2021/07/18:12:34:45.320]
Adprep was about to call the following LDAP API. ldap_sdearch_s(). The base entry to start the search is cn=00232167-f3a4-43c6-b503-9acb7a81b01c,cn=Operations,cn=ForestUpdates,CN=Configuration,DC=pavilion,DC=local.
[2021/07/18:12:34:45.320]
LDAP API ldap_search_s() finished, return code is 0x20
[2021/07/18:12:34:45.320]
Adprep verified the state of operation cn=00232167-f3a4-43c6-b503-9acb7a81b01c,cn=Operations,cn=ForestUpdates,CN=Configuration,DC=pavilion,DC=local.
[Status/Consequence]
The operation has not run or is not currently running. It will be run next.
[2021/07/18:12:34:46.680]
Adprep was unable to complete because the call back function failed.
[Status/Consequence]
Error message: Unable to access the computer "SBSERVER.pavilion.local". The network path was not found.
(0x80070035).
[User Action]
Check the log file ADPrep.log, in the C:\Windows\debug\adprep\logs\20210718123323 directory for more information.
DSID Info:
DSID: 0x18111320
winerror = 0x1f
NT BUILD: 17763
NT BUILD: 475
[2021/07/18:12:34:46.680]
Adprep was unable to update forest information.
[Status/Consequence]
Adprep requires access to existing forest-wide information from the schema master in order to complete this operation.
[User Action]
Check the log file, ADPrep.log, in the C:\Windows\debug\adprep\logs\20210718123323 directory for more information.
[2021/07/18:12:34:46.680]
Adprep successfully stopped using the specified credentials for network connections.
[2021/07/18:12:34:46.680]
Adprep successfully closed the network connection to the Active Directory Domain Controller SBSERVER.pavilion.local.
I double checked the the Schema Version, which moved to 88 without issue:
PS C:\Windows\system32> Get-ADObject (Get-ADRootDSE).schemaNamingContext -Property objectVersion
DistinguishedName : CN=Schema,CN=Configuration,DC=pavilion,DC=local
Name : Schema
ObjectClass : dMD
ObjectGUID : 9c87b049-29d5-4ba5-b205-b9fa4dc7bc87
objectVersion : 88
But it won't complete the AD Prep.
Could you please direct me towards an area to check?
Thank you
Chad Elofson