Link to home
Start Free TrialLog in
Avatar of villartech
villartechFlag for United States of America

asked on

recent office document links no longer work after file server migration

I just migrated share data from server 2003 to server 2012.
The links to recent documents in the users Office suite still point documents from the old server.
Is there a script or tool that can change the recent documents links to point to the new server.
The share folder structure is identical to that of the old server.
Avatar of Cliff Galiher
Cliff Galiher
Flag of United States of America image

Unfortunately not. The recent documents list is stored on a per-user basis and is not editable by a script. What you *can* do is create a CNAME record in DNS to have requests for the old server go to the new one. But this only works for some access types (SMB works) and can only be done if the old server is no longer in service, as creating such a CNAME would break any roles still located on the old server.
ASKER CERTIFIED SOLUTION
Avatar of Qlemo
Qlemo
Flag of Germany 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
I forgot to post details. I've used the Windows 2000 RSK tool regfind with something along
regfind -y \\oldserver\share -r \\newserver\share
REM or, less selective:
regfind -y \\oldserver\ -r \\newserver\

Open in new window

Links (e.g. program shortcuts) pointing to the old server are more difficult to change. I've assembled a PowerShell script for that purpose, but it is more difficult to adjust.