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.

Re: VBscript to install & run app by Mike

Mike
Mon Nov 01 13:56:33 CST 2004

Basically, this script is meant to push the Beagle.AW removal tool to the
client machines on our network. My alternative to this script is manual
installation or relying on the users to run the utility (bad idea).

Thanks for any assistance you may be able to offer.

"Mike" <mdcastleberry@nospam.yahoo.com> wrote in message
news:AMadnes8Y-r-CRvcRVn-qQ@intertex.net...
>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.
>