
Getting Win98 to map drives based upon Group Membership
This is part of the login script that I ahve running:
If sPath = "*" Or sUNCPath = "*" Then
sAdsPath = g_oNet.UserDomain & "/" & g_oNet.UserName
Set oAdsObj = GetObject("WinNT://" & sAdsPath & "user")
If sPath = "*" Then sPath = oAdsObj.HomeDirDrive
If sUNCPath = "*" Then sUNCPath = oAdsObj.HomeDirectory
Set oAdsOBJ = Nothing
End If
I have winNT and win98 users logging in the WinNt users work fine but win98
users are not working. Is there a way to get the users homedir info for win
98??
Marc Hayes