Can you share what the script is doing? Also, it might be
worthwhile to put some debugging into it to see where it fails and with what
messages. If you're not familiar with debugging in VBScript, then add the
following statement to the beginning of your script:
On Error Resume Next
and then after each major operation that "does something"
that isn't just variable assignment (e.g. after sets or gets) put the following
if then:
If err <> 0 then
Wscript.echo err.message
End if
And then see where it bails and with what
message.
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christine Allen
Sent: Thursday, April 28, 2005 9:49 AM
To: '[email protected]'
Subject: RE: [ActiveDir] Group Policy Not working
The
script runs in the background and I do not see it run.
I
copied the VBS script to the local computer and when I try to run it, it opens
the script to view the language it does not run.
Nothing in event view, which I find weird.
When I
run the gpresult /user, I do see the gpo listed in there.
What
locally could be preventing the script from running?
Thanks
for your help!
-----Original Message-----Does the script not run or does it run but not properly?
From: Peter Jessop [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 28, 2005 12:20 PM
To: [email protected]
Subject: Re: [ActiveDir] Group Policy Not working
Are there any clues in the event log?
Can you run the script manually from the workstation?
Are they receiving the GP over a WAN?
