Hi Guys,
I have a very simple machine startup script applied by Group Policy to install(if need be) some audit software when the pc/laptop connects to our domain.
Audit.vbs
This works fine on Windows 2000 machines, but comes up with an error on XP machines
'Windows Script Host
- Invalid procedure call or argument
- At line 2 char 1
- code 800A0005'
When I run this script manually it works fine
Any Ideas ?
Thanks
I have a very simple machine startup script applied by Group Policy to install(if need be) some audit software when the pc/laptop connects to our domain.
Audit.vbs
Code:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "\\server\share\audit.exe"
This works fine on Windows 2000 machines, but comes up with an error on XP machines
'Windows Script Host
- Invalid procedure call or argument
- At line 2 char 1
- code 800A0005'
When I run this script manually it works fine
Any Ideas ?
Thanks