DFS: Difference between revisions

From Piszczynski
piszczynski>Aleks
(Created page with " == DFS File Replication DFSR == DFSR is used to replicate file shares between servers, the windows domain controllers use this to keep the sysvol volume synced between domai...")
 
m (1 revision imported)
 
(No difference)

Latest revision as of 22:31, 15 November 2023

DFS File Replication DFSR

DFSR is used to replicate file shares between servers, the windows domain controllers use this to keep the sysvol volume synced between domain controllers.

Commands to check DFS:

Use to find what files are being replicated:

  • Get-DfsrState -ComputerName "servername" | ? {$_.UpdateState -eq "Downloading"} | Format-Table FileName,UpdateState,Inbound,Source* -Auto -Wrap