-3

I have installed Windows Server 2003 and am trying to make it a DC on a new domain.

It works ok if I use the wizard, but when I try to use an answer file, it says 'An AD domain controller for the domain MYPCNAME could not be contacted'

The error message is true as there is no AD domain yet, that's what I'm trying to create!

My answer file (based on https://technet.microsoft.com/en-us/library/cc758390(v=ws.10).aspx) is:

[DCINSTALL]
UserName=MyLocalAdmin
UserDomain=MYPCNAME
Password=mYpa55word
ReplicaDomainDNSName=ABC-DEF.group.org
ReplicaOrNewDomain=Domain
InstallDNS=Yes
ConfirmGC=Yes
RebootOnCompletion=NoAndNoPromptEither

I've tried with 'ReplicaOrNewDomain=newDomain' as well, but that was no different. It doesn't get beyond asking for network credentials, even though I'm running this as a local admin.

There is no existing DNS, I want this PC to become a DNS server Any ideas (and please, no comments about using ancient OSs!)

2 Answers2

3
  1. You're using an ancient, unsupported OS. this is borderline off-topic here.
  2. Your answer file is completely incorrect for a new domain. where did you get these settings?

https://support.microsoft.com/en-us/kb/223757

Unattended promotion and demotion of Windows 2000 and Windows Server 2003 domain controllers

For new tree in new forest installations, the following options apply:

[DCINSTALL]
ReplicaOrNewDomain=Domain
TreeOrChild=Tree
CreateOrJoin=Create
NewDomainDNSName=<fully qualified DNS domain name (for example, corp.com) >
DNSOnNetwork=yes
DomainNetbiosName=<NetBIOS domain name>
AutoConfigDNS=yes
SiteName=[active directory site name (optional)];
AllowAnonymousAccess=no
DatabasePath=%systemroot%\ntds
LogPath=%systemroot%\ntds
SYSVOLPath=%systemroot%\sysvol
SafeModeAdminPassword=<admin defined offline admin account password>
CriticalReplicationOnly=No
RebootOnSuccess=yes
BlueCompute
  • 2,964
-1

That message errs on DNS-resolving. It tries to locate the 'MYPCNAME.ABC-DEF.GROUP.ORG' domain based on the SRV-record of an existing Active Directory-integrated DNS-server.

M.M.
  • 307