Scripting Issue

  • Thread starter Thread starter Jon M Schneider
  • Start date Start date
J

Jon M Schneider

I have two domain controllers and two data servers running 2000 server and
XP work stations through-out my office. The domain controllers are
replicated. I have a vbscript that maps network shares to the workstations.
I'm using the WHS to accomplish this.

The problem is when my users logon, all of the drives may not map. It seems
that there is no reason for it not to. If I execute the vbs file from
explorer, it works great. It doesn't seem like it's the same drive letter
not mapping either. It's one of those, "It's impossible" type things.

Please advise.
 
Jon M Schneider said:
I have two domain controllers and two data servers running 2000 server and
XP work stations through-out my office. The domain controllers are
replicated. I have a vbscript that maps network shares to the workstations.
I'm using the WHS to accomplish this.

The problem is when my users logon, all of the drives may not map. It seems
that there is no reason for it not to. If I execute the vbs file from
explorer, it works great. It doesn't seem like it's the same drive letter
not mapping either. It's one of those, "It's impossible" type things.

Please advise.

If your script consisted of a batch file then I would do this:

@echo off
net use s: \\SomeServer\SomeShare
net use t: \\SomeServer\OtherShare
pause

You could now see exactly what's going on.
 
Back
Top