Link to home
Start Free TrialLog in
Avatar of tracyprier
tracyprierFlag for New Zealand

asked on

Easiest way to disconnect mapped network drives on user PCs

Hi all :)

I am upgrading/migrating some of our windows servers from 2003 to 2012.

I am currently doing our main file server that most users have three mapped drives to: S:  H: G:

Obviously I will update the login scripts to point these drives to the new server when I am ready but what is the easiest way to first make sure the existing mappings are disconnected on all the users PCs?

thanks
Tracy
SOLUTION
Avatar of John
John
Flag of Canada 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
ASKER CERTIFIED SOLUTION
Avatar of becraig
becraig
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
Avatar of tracyprier

ASKER

...just like that :) thanks guys
You can disconnect then connect your network drives with:

net use s: /delete
net use h: /delete
net use g: /delete

net use s: \\server\fileshare
net use h: \\server\fileshare
net use g: \\server\fileshare

Open in new window