Powershell and DfsrConfigurationFromAD - how to check all servers are updated?
- by user57792
I have two Win2012R2 servers (SERVER1 and SERVER2) that uses DFS Replication for keeping a couple of folders synchronized.
Using the following Powershell-script that i run on SERVER1 I disconnect it from the group:
Set-DfsrConnection -GroupName "Group1" -SourceComputerName "SERVER1" -DestinationComputerName "SERVER2" -DisableConnection $True;
…