Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

491 lines
14 KiB

  1. ; Sample DCPROMO2 AnswerFile.
  2. ; Copyright (C) 1998-2000 Microsoft Corporation
  3. ;
  4. ; To invoke dcpromo with an answerfile, use the following syntax:
  5. ; dcpromo /answer:<answerfile name>
  6. ;
  7. ; where <answerfile name> is the name of the answerfile to be used, relative
  8. ; to the directory from which dcpromo is invoked
  9. ;
  10. ; The answer file is essentially an INI file, the options for which complete
  11. ; the fields of each page of the wizard. Default values are those used if
  12. ; the option is not specified.
  13. ;
  14. ; For all operations (insallations or un-installations), the following
  15. ; options apply:
  16. ; RebootOnSuccess
  17. ;
  18. ; For all installations, the following options apply:
  19. ; DatabasePath
  20. ; LogPath
  21. ; SYSVOLPath
  22. ; SafeModeAdminPassword
  23. ; CriticalReplicationOnly
  24. ; SiteName
  25. ;
  26. ; For BDC upgrades or new replica installations, the following additional
  27. ; options apply:
  28. ; ReplicaOrMember=Replica
  29. ; ReplicaOrNewDomain=Replica
  30. ; ReplicaDomainDNSName
  31. ; ReplicationSourceDC
  32. ; ReplicateFromMedia
  33. ; ReplicationSourcePath
  34. ;
  35. ; For child domain installations, the following additional options apply:
  36. ; ReplicaOrNewDomain=Domain
  37. ; NewDomain=Child
  38. ; ParentDomainDNSName
  39. ; ChildName
  40. ; DomainNetbiosName
  41. ; AutoConfigDNS
  42. ; AllowAnonymousAccess
  43. ;
  44. ; For new tree in existing forest installations, the following
  45. ; additional options apply:
  46. ; ReplicaOrNewDomain=Domain
  47. ; NewDomain=Tree
  48. ; NewDomainDNSName
  49. ; DomainNetbiosName
  50. ; AutoConfigDNS
  51. ; AllowAnonymousAccess
  52. ;
  53. ; For DC demotion, the following additional options apply:
  54. ; AdministratorPassword
  55. ; IsLastDCInDomain
  56. ;
  57. ; For all of the above scenarios, the following options also apply:
  58. ; UserName
  59. ; Password
  60. ; UserDomain
  61. ;
  62. ; For new tree in new forest installations, the following additional
  63. ; options apply:
  64. ; ReplicaOrNewDomain=Domain
  65. ; NewDomain=Forest
  66. ; NewDomainDNSName
  67. ; DNSOnNetwork
  68. ; DomainNetbiosName
  69. ; AutoConfigDNS
  70. ; AllowAnonymousAccess
  71. ;
  72. ; for PDC upgrades, the following additional options apply:
  73. ; SetForestVersion
  74. ;
  75. ; When running in advanced mode, these options apply:
  76. ;
  77. ; ReplicationSourcePath
  78. ; ConfirmGc
  79. ; Syskey
  80. [DCInstall]
  81. ; ReplicaOrMember
  82. ; Used only for BDC upgrades.
  83. ;
  84. ; Possible values:
  85. ; "Replica" - convert the BDC to a replica DS DC.
  86. ; "Member" (or any other value) - demote the BDC to a member server of its
  87. ; domain.
  88. ;
  89. ; Default: "Member"
  90. ReplicaOrMember=Replica
  91. ; ReplicaOrNewDomain
  92. ; Used only for new NT5 server installs.
  93. ;
  94. ; Possible values:
  95. ; "Domain" - convert the server into the first DC of a new DS domain. A
  96. ; value for NewDomain is required.
  97. ; "Replica" (or any other value) - convert the server into a replica DS DC.
  98. ;
  99. ; Default: "Replica"
  100. ReplicaOrNewDomain=Replica
  101. ; NewDomain
  102. ;
  103. ; Used to indicate the type of the new domain, whether it will be a new
  104. ; domain in a new forest, the root of a new tree in an existing forest, or a
  105. ; child of an existing domain.
  106. ;
  107. ; Possible values:
  108. ;
  109. ; "Tree" - the new domain will be the root of a new tree in an existing
  110. ; forest.
  111. ;
  112. ; "Child" - the new domain will be a child of an existing domain.
  113. ;
  114. ; "Forest" (or any other value) - the new domain will be the first domain in
  115. ; a new forest of domain trees.
  116. ;
  117. ; Default: "Forest"
  118. NewDomain=Forest
  119. ; ReplicaDomainDNSName
  120. ; Used for BDC upgrades and new replica dc installs. Value is the DNS
  121. ; domain name of the domain to be replicated from. It is assumed that the
  122. ; currently logged-on user has administrative privileges to that domain,
  123. ; and that DNS services are properly configured.
  124. ;
  125. ; The domain name must refer to an existing DS domain.
  126. ;
  127. ; Ignored if ReplicationSourcePath refers to a valid set of restored backup
  128. ; files (as the domain name to which those files belong takes precedence)
  129. ;
  130. ; Default: none. This value must be specified.
  131. ReplicaDomainDNSName=spruce.ntdev.microsoft.com
  132. ; ParentDomainDNSName
  133. ; Used when child domain install is indicated. Value is the DNS domain name
  134. ; of an existing DS domain. It is assumed that the currently logged-on
  135. ; user has administrative privileges to this domain, and that DNS services
  136. ; are properly configured.
  137. ;
  138. ; Default: none. This value must be specified.
  139. ParentDomainDNSName=spruce.ntdev.microsoft.com
  140. ; ChildName
  141. ; Used when child domain install is indicated. Value is the DNS label to be
  142. ; prepended to the value specified by ParentDomainDNSName to form a new
  143. ; domain name contiguous with and subordinate to the parent. E.g. if the
  144. ; parent name is "spruce.ntdev.microsoft.com" and ChildName is "blue", then
  145. ; the name of the new domain is "blue.spruce.ntdev.microsoft.com". This
  146. ; new domain name must not be in use and DNS services must be properly
  147. ; configured.
  148. ;
  149. ; Default: none. This value must be specified.
  150. ChildName=blue
  151. ; DomainNetbiosName
  152. ; Used to assign a flat name to the new domain. The name must not already
  153. ; be in use as a domain or computer name. This key is ignored when upgrading
  154. ; pre-Windows 2000 PDCs.
  155. ;
  156. ; Default: none. This value must be specified.
  157. DomainNetbiosName=blue-dom
  158. ; NewDomainDNSName
  159. ; Used when new tree in existing domain or new forest installation is
  160. ; indicated. Value is the DNS domain name to be created. This name may
  161. ; not be currently in use.
  162. ;
  163. ; Default: none. This value must be specified.
  164. NewDomainDNSName=aspen.ntdev.microsoft.com
  165. ; DNSOnNetwork
  166. ; Used in new forest installations when DNS client is not configured.
  167. ;
  168. ; Possbile values:
  169. ; "No" - "No, DNS is not on the network, install the DNS service, and
  170. ; create a zone for the new domain"
  171. ; "Yes" (or any other value) - "Yes, DNS is on the network, double-check
  172. ; that the local machine's DNS client configuration is complete." (Note
  173. ; that if the local DNS client is not configured, the wizard will go into
  174. ; interactive mode.)
  175. ;
  176. ; Default: "Yes"
  177. DNSOnNetwork=Yes
  178. ; DatabasePath
  179. ; Value must be the fully-qualified, non-unc path to a directory of a fixed
  180. ; disk of the local machine. If the directory exists, it must be empty.
  181. ; If it does not, it will be created. The volume must have sufficient disk
  182. ; space available -- at least 20MB for new domains. For replicas, the
  183. ; space required is a function of domain size. For optimal performance,
  184. ; the database path should be on a different volume than the log path.
  185. ;
  186. ; Default: %systemroot%\NTDS
  187. DatabasePath=C:\ntds
  188. ; LogPath
  189. ; Value must be the fully-qualified, non-unc path to a directory of a fixed
  190. ; disk of the local machine. If the directory exists, it must be empty.
  191. ; If it does not, it will be created. The volume must have sufficient disk
  192. ; space available -- at least 10MB for new domains. For replicas, the
  193. ; space required is a function of domain size. For optimal performance,
  194. ; the database path should be on a different volume than the log path.
  195. ;
  196. ; Default: %systemroot%\NTDS
  197. LogPath=C:\NTDS
  198. ; SYSVOLPath
  199. ; Value must be the fully-qualified, non-unc path to a directory of a fixed
  200. ; disk of the local machine. If the directory exists, it must be empty.
  201. ; If it does not, it will be created. The volume must be formatted with
  202. ; NTFS version 5.0.
  203. ;
  204. ; Default: %systemroot%\SYSVOL
  205. SYSVOLPath=d:\sysvol
  206. ; SiteName (optional)
  207. ; Value is the name of an existing site in which to place the new DC. If
  208. ; not specified, a suitable site will be selected.
  209. ;
  210. ; Default: "Default-First-Site"
  211. SiteName=My-Answer-File-Site
  212. ; IsLastDCInDomain
  213. ; Only used for demote. Value indicates that the machine is the last DC
  214. ; in the domain.
  215. ;
  216. ; "Yes" - DC is to be treated as the last in the domain.
  217. ; "No" - (or any other value) - DC is not the last in the domain.
  218. ;
  219. ; Default: No
  220. IsLastDCInDomain=No
  221. ; AdministratorPassword
  222. ; Used when demoting a domain controller, to establish the local
  223. ; Administrator account password.
  224. ;
  225. ; Default: no password
  226. AdministratorPassword=foo
  227. ; RebootOnSuccess
  228. ; Used to indicate whether the machine should be rebooted upon successful
  229. ; operation, or not. The server must be rebooted for the directory
  230. ; service to be started.
  231. ;
  232. ; "Yes" - reboot the machine
  233. ; "NoAndNoPromptEither" - do not reboot the machine, and don't show the prompt
  234. ; to reboot either. Just silently exit.
  235. ; "No" - (or any other value) do not reboot the machine.
  236. ;
  237. ; Default: "No"
  238. RebootOnSuccess=No
  239. ; UserName
  240. ; Used to indicate the account credentials to be used for the promotion
  241. ; operation.
  242. ;
  243. ; Default: none.
  244. UserName=Administrator
  245. ; Password
  246. ; Used to indicate the account credentials to be used for the promotion
  247. ; operation.
  248. ;
  249. ; Default: none.
  250. Password=bar
  251. ; UserDomain
  252. ; Used to indicate the domain that the UserName should be taken from.
  253. ;
  254. ; Default: If the operation is to create a new forest or to become a member
  255. ; server from a BDC upgrade, there is no default. If the operation is to
  256. ; create a new tree, then the default is the DNS name of the forest the
  257. ; computer is presently joined to. If the operation is to create a new child
  258. ; domain or a replica, then the default is the DNS name of the domain the
  259. ; computer is joined to. If the operation is to demote the computer, and the
  260. ; computer is a DC for a child domain, then the default is the DNS name of
  261. ; the parent domain. If the operation is to demote the computer, and the
  262. ; computer is a DC of a tree root domain, then the default is the DNS name of
  263. ; the forest.
  264. UserDomain=myDomain
  265. ; AutoConfigDNS
  266. ; Used to indicate whether the wizard should install and configure DNS for
  267. ; the new domain, as it has detected that dynamic dns updates are not
  268. ; available.
  269. ;
  270. ; If the wizard can't verify that dynamic DNS registration will be
  271. ; successful, and the value of this key is "Yes", then the wizard will
  272. ; install and configure DNS on the local computer.
  273. ;
  274. ; Otherwise, dynamic DNS is available, or the value is not "Yes", and so
  275. ; DNS will not be installed.
  276. ;
  277. ; Default: "Yes"
  278. AutoConfigDNS=Yes
  279. ; AllowAnonymousAccess
  280. ; Used when downlevel (pre Windows 2000) servers will be authenticating users
  281. ; from this domain or any trusting domain. This option indicates whether
  282. ; dcpromo should cause the permissions to be set to permit anonymous access
  283. ; to user and group information.
  284. ;
  285. ; "Yes" - downlevel servers will be used with this domain. Allow anonymous
  286. ; access.
  287. ; "No" (or any other value) - all servers in the domain are Windows 2000 --
  288. ; use more restrictive, permissions.
  289. ;
  290. ; Default: "Yes"
  291. ; ReplicationSourceDC (optional)
  292. ; Used to indicate the name of the domain controller from which the domain
  293. ; information is to be replicated. Only applies in new replica or BDC
  294. ; upgrade cases. If no value is supplied, the closest domain controller
  295. ; for the domain being replicated will be selected.
  296. ;
  297. ; Default: (no value) - select a dc automatically
  298. ReplicationSourceDC=
  299. ; SafeModeAdminPassword
  300. ; Used to supply the password to be set on the administrator account used
  301. ; when the computer is started in safe mode (or a variant of safe mode, like
  302. ; ds repair mode)
  303. ;
  304. ; Default: (no value) - blank password
  305. SafeModeAdminPassword=MyHappyPassword
  306. ; CriticalReplicationOnly
  307. ; Used to specify that the promotion operation should perform only critical
  308. ; replication, then continue, skipping the (possibly very lengthy) non-
  309. ; critical portion. Set to "yes" to skip non-critical replication.
  310. ;
  311. ; (in the case that non-critical replication is skipped, that replication
  312. ; will automatically and silently resume when the computer is rebooted and
  313. ; assumes its new role as a domain controller.)
  314. ;
  315. ; Default: (no value) - no; i.e. do critical and non-critical replication
  316. CriticalReplicationOnly=yes
  317. ; ReplicationSourcePath
  318. ;
  319. ; Used to indicate that the bulk of the directory data replication should
  320. ; be drawn from backup files that have been restored to a volume on the
  321. ; server, rather from another domain controller.
  322. ;
  323. ; However, complete replication can not be performed entirely from copied
  324. ; files: access to another domain controller is still required. (see
  325. ; ReplicationSourceDC)
  326. ;
  327. ; Indicates the location of the files to be used to create a new replica
  328. ; domain controller. The value must be the fully-qualified path to a
  329. ; folder on the local computer where the files have been copied.
  330. ;
  331. ; If this value is present and non-empty, then data replication will be
  332. ; performed using the restored files. If this value is not present or is
  333. ; empty, then replication will take place entirely over the wire.
  334. ;
  335. ; If the value refers to a valid set of restored backup files, then any
  336. ; value for the ReplicaDomainDNSName key will be ignored, as the domain
  337. ; name to which the restored files belong takes precedence.
  338. ;
  339. ; Default: none
  340. ;
  341. ; Example: "C:\restored\ds"
  342. ReplicationSourcePath=
  343. ; ConfirmGc
  344. ;
  345. ; Only applies if ReplicationSourcePath is specified. If restored files
  346. ; were created from a backup of a global catalog, then the replica can also
  347. ; be made a global catalog from those files. Use this value to indicate
  348. ; whether the replica should also be a global catalog, or not.
  349. ;
  350. ; If this value is "Yes" and the backup was of a global catalog, then the
  351. ; replica will also be made a global catalog. Otherwise, the replica will
  352. ; not be made a global catalog
  353. ;
  354. ; Default: "Yes"
  355. ConfirmGc=No
  356. ; Syskey
  357. ;
  358. ; Only applies if ReplicationSourcePath is specified. This value is used
  359. ; if the restored files used to install a replica indicate that the system
  360. ; key must be supplied by the user.
  361. ;
  362. ; If the restored files indicate that the system key must be supplied on
  363. ; diskette, then the system will look for the key on drive A:
  364. ;
  365. ; Default: none
  366. Syskey=
  367. ; SetForestVersion
  368. ;
  369. ; Only applies if the machine is a NT4 domain controller completing upgrade,
  370. ; and the domain controller will be the first dc in a new forest
  371. ; (NewDomain=Forest). This key will indicate whether or not to set the new
  372. ; forest behavior version level to 1. Level 1 allows more efficient
  373. ; replication of large group memberships, but will prevent any Windows 2000
  374. ; domain controllers from being added to the forest.
  375. ;
  376. ; If the value is "Yes", the level will be set to 1. If not, the level will
  377. ; not be set.
  378. ;
  379. ; Default: "No"
  380. SetForestVersion=No