M
Mikhail Zuskov
Situation:
We've removed an old file server a few month ago. Now, when we've deployed a
number of WinXP systems with Office 2003 on it, we've discovered that opening
of some documents can lasts up to 20 minutes. After some debugging i've
discovered that these documents contain link to template on the non-existing
file server.
If i got to tools->templates i see this pach standing in Attach line. If i
clear it and save the document, the problem with that document is solved.
BUT, I've got thusends of these documents and doing this manually for all of
them looks like suicide to me.
The question is how can i automatically remove this UNC path from all the
documents?
if i run for example this script i don't see the bad template
Sub test()
Count = 1
For Each aTemplate In Templates
MsgBox aTemplate.Name & " is template number " & Count
Count = Count + 1
Next aTemplate
End Sub
We've removed an old file server a few month ago. Now, when we've deployed a
number of WinXP systems with Office 2003 on it, we've discovered that opening
of some documents can lasts up to 20 minutes. After some debugging i've
discovered that these documents contain link to template on the non-existing
file server.
If i got to tools->templates i see this pach standing in Attach line. If i
clear it and save the document, the problem with that document is solved.
BUT, I've got thusends of these documents and doing this manually for all of
them looks like suicide to me.
The question is how can i automatically remove this UNC path from all the
documents?
if i run for example this script i don't see the bad template
Sub test()
Count = 1
For Each aTemplate In Templates
MsgBox aTemplate.Name & " is template number " & Count
Count = Count + 1
Next aTemplate
End Sub