Backout of ADPREP

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 19 DC's at 17 sites.
I will be creating fresh ERD's and System State Backups.
Once ADPREP /FORESTPREP is launched is there anyway to recover from it
without restoring?
 
unless you have disabled outbound replication on the schema master, the
other DCs will not have the schema update.
* Disable outbound replication on the schema master
* Run ADPREP /forestprep on the schema master
* Check logs to see if everything is OK
* Everything OK? enable outbound replication on the schema master
* Everything OK? restore the schema master from backup

if all DCs in the forest have received the schema updates there is no other
way to undo the schema change then restoring all DCs in the forest!

So having SYSTEMDISK and SYSTEMSTATE backups is OK!
 
What would the proper syntax be for this command

repadmin /options +DISABLE_OUTBOUND_REPL

What is the "options" part of the command
 
to disable outboumd repl.
REPADMIN /OPTIONS <DCNAME> +DISABLE_OUTBOUND_REPL

to enable outboumd repl.
REPADMIN /OPTIONS <DCNAME> -DISABLE_OUTBOUND_REPL


The "options" argument tells repadmin to modify the options attribute of the
NTDS Settings object of the DC with what you specify after the DC name
 
Thx Jorge
--
Robert de Groot


Jorge de Almeida Pinto said:
to disable outboumd repl.
REPADMIN /OPTIONS <DCNAME> +DISABLE_OUTBOUND_REPL

to enable outboumd repl.
REPADMIN /OPTIONS <DCNAME> -DISABLE_OUTBOUND_REPL


The "options" argument tells repadmin to modify the options attribute of the
NTDS Settings object of the DC with what you specify after the DC name
 
Back
Top