-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Active Directory Administration Cookbook, Second Edition
By :

For Active Directory environments with really low bandwidth or networking resiliency between locations with domain controllers, regardless of whether these are read-only domain controllers or fully writable domain controllers, promoting a Windows Server installation to a domain controller can take a long time or even fail.
In these types of scenarios, for adding an additional domain controller or read-only domain controller to an existing domain, Microsoft offers the Install From Media (IFM) option.
When creating IFM media, check for proper Active Directory replication before creating the IFM media on the domain controller. This ensures that the domain controller is up to date with all changes in Active Directory.
Create a folder on the source and destination domain controller to store the files needed for IFM.
IFM consists of two steps:
IFM
packageIFM
packageTo create the IFM
package, perform the following actions on a domain controller in a well-connected networking location, running the same version of Windows Server on which you intend to use the IFM
package to swiftly promote it to a domain controller in a low-bandwidth scenario:
Tip
IFM
packages to create read-only domain controllers can be created on both read-only domain controllers and on fully writable domain controllers. IFM
packages to create fully writable domain controllers can only be created on fully writable domain controllers.
cmd.exe
, but instead of running it by pressing Enter, press Ctrl, Shift, and Enter.ntdsutil.exe
activate instance ntds
IFM
creation context:IFM
IFM
, including the contents of the Active Directory SYSVOL
for a read-only domain controller, and place it in the C:\IFM
folder:create RODC C:\IFM
IFM
context:quit
quit
To leverage the IFM
package on the destination domain controller in the remote location, choose one of the following methods:
dcpromo.exe
Install-ADDSDomainController
PowerShell cmdletPerform these steps to leverage the install using the Active Directory Domain Services Configuration Wizard:
Figure 2.12 – The Additional Options screen of the Active Directory Domain Services Configuration Wizard
The Install-ADDSDomainController
PowerShell cmdlet only needs the -InstallationMediaPath
additional parameter to leverage the IFM
package when promoting a Windows Server installation to a domain controller.
When combining it with the sample PowerShell command for adding a domain controller to an existing domain, the following line of Windows PowerShell emerges:
Install-ADDSDomainController -DomainName lucernpub.com -InstallationMediaPath "C:\IFM"
Replace lucernpub.com
with the DNS domain name of your Active Directory domain.
As with the Install-ADDSDomainController
PowerShell cmdlet, dcpromo.exe
requires an optional parameter to leverage the IFM
package.
Perform the following steps:
ReplicationSourcePath= "C:\IFM"
/ReplicationSourcePath:"C:\IFM"
As a Windows Server installation becomes a domain controller, it replicates the contents of the Active Directory database and the Active Directory SYSVOL to its local hard drive(s). The entire package needed for this replication can also be assembled before promotion. Then, the IFM
package can be delivered to the remote location, or even carried by the technician that will promote the (read-only) domain controller.
Important Note
The amount of network traffic needed when using the IFM option is heavily reduced but is certainly not zero. As the IFM
package represents a point-in-time snapshot of the contents of the Active Directory database and the Active Directory SYSVOL, any changes between the time of the creation of the IFM
package and using it will need to replicate before promotion of the domain controller is successfully completed.