How to switch Map drive between tow server if first is out of netw

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello, i have this question:

I have 2 server Windows 2003; if first server is off or damaged, i need to
switch network mapped drive of clients (after restart) to the second server.
Both servers are DC and DNS server and the clients can logon to both server.

Can I use a script to do that?

Thank you.

Maurizio
 
Hello, i have this question:

I have 2 server Windows 2003; if first server is off or damaged, i need to
switch network mapped drive of clients (after restart) to the second server.
Both servers are DC and DNS server and the clients can logon to both server.

Can I use a script to do that?

Thank you.

Maurizio

In a logon script:

net use /persistent:NO
net use H: /delete
net use H: %LOGONSERVER%\SHareName



Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
 
Back
Top