Skip navigation
Pre-populate Users’ passwords on a Read-Only Domain Controller (RODC)

Pre-populate Users’ passwords on a Read-Only Domain Controller (RODC)

When a branch users and computers logs in, the RODC contacts a writeable DC for their authentication and caches their password provided Password Replication Policy (PRP) is configured. However, you can prepopulate the passwords cache on RODC with user and computer accounts before they try to log in at the branch site. 

Pre-populating passwords cache on an RODC ensures branch users and computers can still log in when a WAN link between Read-Only DC and Writeable DC is down. You can pre-populate password cache by using ADUC MMC snap-in or PowerShell.

Before you move ahead, add users and computers to Allowed RODC Password Replication Group otherwise password replication won’t occur.

Pre-populate Users’ Passwords Using Active Directory User and Computer MMC Snap-in

Step 1. Open Active Directory User and Computer MMC Snap-in and make sure you are connected to writeable DC

Step 2. Expand domain node and click Domain Controllers

Step 3. In the right-pane Right-click the RODC computer account -> click Properties

Step 4. Click Password Replication Policy tab

Step 5. Click Advanced

Step 6. Click Prepopulate Passwords and enter the desired user or computer account

Step 7. When you are asked for confirmation, click Yes

Step 8. Wait for confirmation 

Pre-populate Users’ Passwords Using PowerShell
Step 1.
Open PowerShell with elevated privileges 
Step 2. Execute the following script. Make sure to replace the parameter values

 

$users = Get-ADUser -SearchBase "OU=Students,dc=yourdomain,dc=com" -Filter * 

foreach ($user in $users) {

Get-ADObject -identity $user | Sync-ADObject -object -Source  -Destination  -PasswordOnly
}

 

References

  1. https://technet.microsoft.com/en-us/library/cc753470(v=ws.10).aspx
  2. https://technet.microsoft.com/en-us/library/hh852296(v=wps.630).aspx
  3. https://blogs.technet.microsoft.com/poshchap/2014/04/18/prepopulate-passwords-to-rodcs-with-powershell/
  4. https://technet.microsoft.com/en-us/library/dd145500(v=ws.11).aspx
Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish