wrote on 04 okt 2005 in comp.lang.javascript:
> Your answer does not seem to apply here.
Please always quote on usenet.
This is not email.
> I am not talking about a web
> application. This is a windows shell script built in JavaScript. It
> is a script designed to handle large volumes of file parsing and
> distribution. This script has no interactivity with a browser or with
> users. It silently runs as a batch utility.
Try:
function runMe(myPath)
{
var myShell = new ActiveXObject("WScript.Shell");
myShell.Run(myPath, 1, true);
}
--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)
|