I have a Computer Startup Script (vbs) defined using Group Policy which installs some auditing software on a computer when it connects to the network and domain.
This works fine on a Windows 2000 PC and if run manually on an XP machine when logging in as any type of user, however I get Script Runtime errors on the XP machine at startup.
The GPO has the Computer name in the scope
Under what security context does the script run at computer startup ?
The script is a simple two liner
The error given is
'Windows Script Host
- Invalid procedure call or argument
- At line 2 char 1
- code 800A0005'
The share permissions are Everyone=Read
Domain controller = W2k3
Any ideas
Thanks
This works fine on a Windows 2000 PC and if run manually on an XP machine when logging in as any type of user, however I get Script Runtime errors on the XP machine at startup.
The GPO has the Computer name in the scope
Under what security context does the script run at computer startup ?
The script is a simple two liner
Code:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Exec "\\server\share\setup.exe"
The error given is
'Windows Script Host
- Invalid procedure call or argument
- At line 2 char 1
- code 800A0005'
The share permissions are Everyone=Read
Domain controller = W2k3
Any ideas
Thanks