Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Start an application with JScript

Tags:

javascript

Is there a way to start an application using JScript?

like image 205
Olivier Avatar asked Oct 12 '22 00:10

Olivier


1 Answers

You can use something like:

WSH = new ActiveXObject("WScript.Shell");
WSH.run("notepad.exe");
like image 78
Please treat your mods well. Avatar answered Oct 13 '22 12:10

Please treat your mods well.