OregonSteve
MIS
Greetings-
W2k3 server; single forest; single domain; Two W2K3 DCs; WinXPpro workstations. Applying logon script through Group Policy. Using VBscript to create a login script for my organization. Right now we're testing it in IT and some (NOT ALL) users get an error SOMETIMES:
Script:
\\Domain.com\SysVol\Domain.com\Policies\etc., etc.
Line: 42
Char: 4
Error: 0x80005000
Code:80005000
Source: Null
Here is the section containing line 42 from the script; Line 42 is the "Set objUser" line; character four is the "S" in Set objUser.
'----THIS SECTION CREATES THE DICTIONARY OBJECTS ENUMERATING GROUP
MEMBERSHIP----
Function CreateMemberOfObject(strDomain, strUserName)
Dim objUser, objGroup
Set CreateMemberOfObject = CreateObject("Scripting.Dictionary"
CreateMemberOfObject.CompareMode = vbTextCompare
Set objUser = GetObject("WinNT://" _
& strDomain & "/" _
& strUserName & ",user"
For Each objGroup In objUser.Groups
CreateMemberOfObject.Add objGroup.Name, "-"
Next
Set objUser = Nothing
End Function
As I said, this is a sporadic error. Only some users are getting it and not every time they log in. I'm not a Scripter so I need some help.
Thanx
OregonSteve
W2k3 server; single forest; single domain; Two W2K3 DCs; WinXPpro workstations. Applying logon script through Group Policy. Using VBscript to create a login script for my organization. Right now we're testing it in IT and some (NOT ALL) users get an error SOMETIMES:
Script:
\\Domain.com\SysVol\Domain.com\Policies\etc., etc.
Line: 42
Char: 4
Error: 0x80005000
Code:80005000
Source: Null
Here is the section containing line 42 from the script; Line 42 is the "Set objUser" line; character four is the "S" in Set objUser.
'----THIS SECTION CREATES THE DICTIONARY OBJECTS ENUMERATING GROUP
MEMBERSHIP----
Function CreateMemberOfObject(strDomain, strUserName)
Dim objUser, objGroup
Set CreateMemberOfObject = CreateObject("Scripting.Dictionary"
CreateMemberOfObject.CompareMode = vbTextCompare
Set objUser = GetObject("WinNT://" _
& strDomain & "/" _
& strUserName & ",user"
For Each objGroup In objUser.Groups
CreateMemberOfObject.Add objGroup.Name, "-"
Next
Set objUser = Nothing
End Function
As I said, this is a sporadic error. Only some users are getting it and not every time they log in. I'm not a Scripter so I need some help.
Thanx
OregonSteve