Hello Researcher, I am Henry and I want to share my insight about your issue.
Based on your description, the issue is not with your overall DFS configuration but is isolated to the D: drive itself. When you moved the physical disk between servers, the hidden metadata in the System Volume Information folder became inconsistent with the new replication partnership. DFS-R sees the old database, assumes the content is up-to-date, and fails to sync silently.
You can refer this solution is to force DFS-R to re-initialize the database for the D: drive, treating it as a new replication target.
Perform these steps on the primary server (PC-1).
- Stop the DFS Replication Service: Open an administrative PowerShell or Command Prompt and run:
net stop DFSR - Reset the DFS-R Database for Drive D: You must delete the hidden database folder. This requires taking ownership of it first.
- Run the following commands in order from your administrative prompt:
-
takeown /f "D:\System Volume Information\DFSR" /r /d y -
icacls "D:\System Volume Information\DFSR" /grant administrators:F /t -
rd /s /q "D:\System Volume Information\DFSR"
-
- Run the following commands in order from your administrative prompt:
- Restart the DFS Replication Service:
net start DFSR - Force Replication and Verify: The service will now perform an initial sync for the D: drive. You can force an immediate poll and check the status.
- Force polling:
dfsrdiag pollad - Check the replication backlog (it should start high and then decrease to 0):
dfsrdiag replicationstate
- Force polling:
This procedure forces DFS-R to build a clean database for the D: volume and will re-establish replication.
Online Documentation
- DFSRDIAG Command-Line Tool: This is the official Microsoft reference for the diagnostic tool used to force polling and check replication status.
- DFS-R Initial Sync Process: This documentation explains the initial sync behavior, which is what you are manually triggering by following the steps above.
I hope this information and these keywords help point you in the right direction for your research. Let me know how it goes, and if this answer helps, feel free to hit “Accept Answer” so others can benefit too