Mapping Network Drives using GP

  • Thread starter Thread starter Andrew C Matthews
  • Start date Start date
A

Andrew C Matthews

Hi there,
I am currently mapping a network drive, H, to a share on
our Windows 2000 Server (\\romserver\actdatabase), using
a logon script. All our clients are XP Pro. The mapping
works OK, but strangely, the drive appears
as "Disconnected Network Drive (H:)" in My Computer on
the client PCs. A minor niggle, but not very user
friendly!

Any help would be greatly appreciated.

Andy
 
I do this.

First script maps network dive

net use t: \\email\VBBH$

Then second script to rename that to VBBH Glavni folder

sDrive = "T:\" ' note the trailing backslash!
Set oShell = CreateObject("Shell.Application")
oShell.NameSpace(sDrive).Self.Name = "VBBH INFO Glavni folder"
 
I am also looking for an answer to this very same issue. It may or ma
not have anything to do with it but we are also using the H driv
letter, and Windows XP clients.

Any help would be appreciated


-
WVCWebgu
 
Back
Top