I need a script that will push a utility to all the client PC's on our
network and start that utility's installation. I am testing it on my
machine first (XP with SP2), and I'm having some problems even running it.
Here's the script so far:
Dim oShell
Set oShell = WScript.CreateObject("WScript.Shell")
oShell.Run "C:\FxBeagle.exe"
oShell.SendKeys "{Tab2}"
oShell.SendKeys "{Enter2}"
Set oShell = Nothing
This is only to run the app. The app opens fine, however, the script stops
running due to the SP2 security prompt. Can anyone help with this script?
Thanks in advance.