Link to home
Start Free TrialLog in
Avatar of FlyboyExch60
FlyboyExch60

asked on

DFS File Server Migration

I have been tasked with migrating a file server -
I have used Robocopy to copy the files from serverA over to ServerDFS
All fileshares on ServerA are accessed via the DFS name - basically the target path points to ServerA


My question is this - how can I change the path to point to the shares on ServerDFS so that the change is seemless to the users at large?
(Replication is not comfigured)
(BTW the users are mapped to the shares via logon script.)
Avatar of NVIT
NVIT
Flag of United States of America image

Do you mean for example, users have an existing mapped drive letter z: to \\ServerA\share, and now to want to point z: to the new server? If so,
net use z: /del
net use z: \\ServerDFS\share

Open in new window

Avatar of FlyboyExch60
FlyboyExch60

ASKER

Not really - What I want is to change the path via DFS Management to point to the new location \\FQDN\Share - I think what your suggesting is already done via the logon script.
ASKER CERTIFIED SOLUTION
Avatar of NVIT
NVIT
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the update, FlyboyExch60. I hoped it worked well for you.