Static IP losing Mapped Drives

FoxEnigma

Distinguished
Jun 16, 2011
24
0
18,510
I work at an accounting company and we just got a new ISP, unfortunately the ISP is not reliable for constant uninterrupted access when using the internet normally so one of the computers was changed to static IP. Now because it is Static IP it loses access to the Mapped Drives it had previously. What steps should I take to resolve this?
 
Solution
Here is a script we use for 90% of all our users

net use h: /d /y
net use s: /d /y
net use h: \\cp-fps\data /y
net use s: \\cp-fps\cad /y
net use v: \\fs1\epicor /y
net use w: \\fs1\e2 /y
net use J: \\cp-fps\JobPackets /y
net use k: \\cp-fps\Faxes /y
net use n: \\cp-fps\cad\venders /y
exit

anytime someone logs in it runs this script for their user account so it remaps the drives every time.

FoxEnigma

Distinguished
Jun 16, 2011
24
0
18,510


Not sure I'd have to find out from the person who created the mapped drives. So far if the computer with the problems goes back to non static ip they can see and connect to the drives, though they have to remap it.

 
Here is a script we use for 90% of all our users

net use h: /d /y
net use s: /d /y
net use h: \\cp-fps\data /y
net use s: \\cp-fps\cad /y
net use v: \\fs1\epicor /y
net use w: \\fs1\e2 /y
net use J: \\cp-fps\JobPackets /y
net use k: \\cp-fps\Faxes /y
net use n: \\cp-fps\cad\venders /y
exit

anytime someone logs in it runs this script for their user account so it remaps the drives every time.
 
Solution