This may help for "easy" hyperlinks ( without SubAddresses )
Three steps:
1. Convert all the Inserted hyperlinks into hyperlink formulas with the
following macro:
Sub hyper_converter()
Dim h As Hyperlink
dq = Chr(34)
beginning = "=hyperlink(" & dq
middle = dq & "," & dq
ending = dq & ")"
For Each h In ActiveSheet.Hyperlinks
s1 = h.Address
s2 = h.TextToDisplay
Set r = h.Range
r.Clear
r.Formula = beginning & s1 & middle & s2 & ending
Next
End Sub
2. Using Find/Replace force any url's in the formulas back to the mapped
drive letters.
3. Test the result.

Signature
Gary''s Student - gsnu2007b
> number one when my users do insert hyperlink and browse to a network
> drive using excel outlook etc... it puts the unc path in to the server
[quoted text clipped - 5 lines]
> stored that is going to have huge challenges very shortly if i can't
> do this. Thanks in advance for any and all help!!!