Hello all,
to export DFS-namespaces the tool dfsutil can be used.
Here is an simple example herefore.
$DFSRoots = (Get-DFSNRoot).Path
$Date = Get-Date -Format yyy-MM-dd
ForEach ($Root in $DFSRoots)
{
dfsutil root export $($Root) $("D:\DFSBCK-$Root-$Date.xml")
}
~David