Hello,
it seems to be some conditional forwarders are locally created in the dc.
i hope you are trying to demote the domain controller using powershell , you may try
$error[0] |select * and see which zones are local and enable them to replicate with other domain controllers.
once all resolved, i may use the blow command to demote
Uninstall-ADDSDomainController -DemoteOperationMasterRole:$false -RemoveDnsDelegation:$false
it will break if any thing gets failed , never skip the prechecks in production envionment.
Uninstall-ADDSDomainController -DemoteOperationMasterRole:$false -RemoveDnsDelegation:$false
if all tests passed , in this case i may use -IgnoreLastDnsServerForZone
Uninstall-ADDSDomainController -DemoteOperationMasterRole:$false -RemoveDnsDelegation:$false -Force:$true -IgnoreLastDnsServerForZone
Regards
Deepak,