scripting

  • Thread starter Thread starter Geoff
  • Start date Start date
G

Geoff

Here is the situation. We currently run 2000 server on our
systems in 7 domains with AD, from the server users get
there desktop settings, icons for progrmas etc.... This is
in a script in logon, when that goes down they loose all
desktop settings and access to mapped drives referenced in
the script. Is there a way so that if one server goes down
the settings folder is referenced on another server?
 
try to use "if exist" in you batch file.
// check if exist X & mount another if exist.
net use x: \\server1\share2
if exist x: goto next
net use x: \\server2\share2
if exist x: goto next
.....

:next

I've not try. But normally it works

Koj
 
Back
Top