Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Start exe on PocketPC using VB script

Status
Not open for further replies.

Kocky

Programmer
Oct 23, 2002
357
NL
Hello there,

I would like a vb script that I will place on a PocketPC 2002 device which will start an executable.

Is this possible and how ?

Greetings,

Pascal.
 
As long as the windows script host is present and functional, I don't see why it wouldn't be possible.

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
Do you also know which VB script code I could use ?
 
Something like this:
Code:
Option Explicit

Dim oWsh:Set oWsh = CreateObject("WScript.Shell")

oWsh.Run "myExe.exe", 1, False

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top