We are replacing our Novell login script with a vbs script login script. I
am having trouble figuring out how to convert the following:
In Novell:
IF MEMBER OF ".PBAPPS.GROUPS.CHI.XXX" THEN
MAP N:=CHI13\VOL1:\APPS\PB32
MAP INS S9:=CHI13\VOL1:\APPS\PB32
END

In vbs I have so far:
If IsMember("CHIPBAppsUsers") Then
DriveMapper "N:", "\\chi13\vol1\apps\pb32" (this is fine)
Net Use * \\chi13\vol1\apps??? (Not sure how to do a map insert search
drive)
End If

Any help would be appreciated. Thanks

Re: Replacing Novell Login Script by Torgeir

Torgeir
Fri Oct 08 12:20:59 CDT 2004

Lillian wrote:

> We are replacing our Novell login script with a vbs script login script. I
> am having trouble figuring out how to convert the following:
> In Novell:
> IF MEMBER OF ".PBAPPS.GROUPS.CHI.XXX" THEN
> MAP N:=CHI13\VOL1:\APPS\PB32
> MAP INS S9:=CHI13\VOL1:\APPS\PB32
> END
>
> In vbs I have so far:
> If IsMember("CHIPBAppsUsers") Then
> DriveMapper "N:", "\\chi13\vol1\apps\pb32" (this is fine)
> Net Use * \\chi13\vol1\apps??? (Not sure how to do a map insert search
> drive)
> End If
>
> Any help would be appreciated. Thanks
Hi

Sorry, Microsoft does not have any built-in that does what Netware's
map insert search (MAP INS) does.


--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx

Re: Replacing Novell Login Script by Lillian

Lillian
Fri Oct 08 15:35:18 CDT 2004

Thanks for the quick response.
"Torgeir Bakken (MVP)" <Torgeir.Bakken-spam@hydro.com> wrote in message
news:erdtDtVrEHA.1036@TK2MSFTNGP10.phx.gbl...
> Lillian wrote:
>
> > We are replacing our Novell login script with a vbs script login script.
I
> > am having trouble figuring out how to convert the following:
> > In Novell:
> > IF MEMBER OF ".PBAPPS.GROUPS.CHI.XXX" THEN
> > MAP N:=CHI13\VOL1:\APPS\PB32
> > MAP INS S9:=CHI13\VOL1:\APPS\PB32
> > END
> >
> > In vbs I have so far:
> > If IsMember("CHIPBAppsUsers") Then
> > DriveMapper "N:", "\\chi13\vol1\apps\pb32" (this is fine)
> > Net Use * \\chi13\vol1\apps??? (Not sure how to do a map insert search
> > drive)
> > End If
> >
> > Any help would be appreciated. Thanks
> Hi
>
> Sorry, Microsoft does not have any built-in that does what Netware's
> map insert search (MAP INS) does.
>
>
> --
> torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
> Administration scripting examples and an ONLINE version of
> the 1328 page Scripting Guide:
> http://www.microsoft.com/technet/scriptcenter/default.mspx