Hi,
You need to go one level deeper! You can map not just share names, but
folders under them.
Map as follows:
\\domain.local\shared\Folder1 --> \\SERVER01\Data01$\Folder1
\\domain.local\shared\Folder2 --> \\SERVER01\Data01$\Folder2
\\domain.local\shared\Folder3 --> \\SERVER01\Data01$\Folder3
\\domain.local\shared\Folder4 --> \\SERVER02\Data02$\Folder4
\\domain.local\shared\Folder5 --> \\SERVER02\Data02$\Folder5
\\domain.local\shared\Folder6 --> \\SERVER02\Data02$\Folder6
\\domain.local\shared\Folder7 --> \\SERVER03\Data03$\Folder7
\\domain.local\shared\Folder8 --> \\SERVER03\Data03$\Folder8
\\domain.local\shared\Folder9 --> \\SERVER03\Data03$\Folder9
If there are lots of folders, you may want to use command DFSMAP with a FOR,
something like:
DFSCMD /Unmap "\\domain.local\shared\Data01"
FOR /D %F IN (\\SERVER01\Data01$\*.*) DO DFSCMD /Map
"\\domain.local\shared\%~nxF" "%F"
DFSCMD /Unmap "\\domain.local\shared\Data02"
FOR /D %F IN (\\SERVER02\Data02$\*.*) DO DFSCMD /Map
"\\domain.local\shared\%~nxF" "%F"
DFSCMD /Unmap "\\domain.local\shared\Data03"
FOR /D %F IN (\\SERVER03Data03$\*.*) DO DFSCMD /Map
"\\domain.local\shared\%~nxF" "%F"
Read FOR /? and DFSCMD /? to understand how this works.
What these commands do, they for each server unmap your high-level folder,
then For command lists all its SUBfolders, they map just subfolder name
(%~nxF - name+extension, i.e. last folder name!

into %F, full folder path
as a target...
(I have done just today about 50 subfolders of different levels while
migrating data from old server... had to split DFS granularity really deep
into subfolders, as the data amount is up to 700GB... and you can't copy it
overnight... but I digress.) This is how you create a DFS link tree.
Cheers
Maximilian
<> wrote in message
news:67e73520-ff48-4cbb-82ee-...
> I have a problem getting DFS configured the way I would like my users
> to see folders. My environment is 100% Win2k3 R2. However, AD is
> running in Mixed Mode (if it matters) because of an older app we can't
> decom yet.
>
> I have three shares:
>
> SERVER01\Data01$
> SERVER02\Data02$
> SERVER03\Data03$
>
>
> Each share has its own unique folders and data under it, as shown
> below:
>
> SERVER01\Data01$
> -> Folder1
> -> Folder2
> -> Folder3
>
> SERVER02\Data02$
> -> Folder4
> -> Folder5
> -> Folder6
>
> SERVER03\Data03$
> -> Folder7
> -> Folder8
> -> Folder9
>
>
> What I would like is one domain-based DFS root that "aggregates" all
> of the folders under each share into one list, like below:
>
> DOMAIN.LOCAL\shared
> -> Folder1
> -> Folder2
> -> Folder3
> -> Folder4
> -> Folder5
> -> Folder6
> -> Folder7
> -> Folder8
> -> Folder9
>
> I can't seem to get DFS configured properly to do this. When I
> created the three links (Data01, Data02, Data03) under DOMAIN.LOCAL
> \shared root, I end up with:
>
> DOMAIN.LOCAL\shared
> -> Data01
> -> Data02
> -> Data03
>
>
> What am I missing? How can I set up DFS to show all of the folders
> under each share into one list? Thanks in advance for your help and
> advice! 
>