admin管理员组

文章数量:1343936

I want to execute a process named notepad.exe or any exes in javascript and i want to handle the process in javascript by giving input and so on. I think there is a shell mand used in javascript to create process can anybody brief me or help me with the example how to work with process in javascript?

I want to execute a process named notepad.exe or any exes in javascript and i want to handle the process in javascript by giving input and so on. I think there is a shell mand used in javascript to create process can anybody brief me or help me with the example how to work with process in javascript?

Share asked Aug 31, 2009 at 6:25 Rajesh Kumar JRajesh Kumar J 4,7956 gold badges27 silver badges25 bronze badges 1
  • 2 Are you referring to JavaScript running inside a browser or JScript running in the Windows Script Host? – bobbymcr Commented Aug 31, 2009 at 6:33
Add a ment  | 

4 Answers 4

Reset to default 7

Not possible. JavaScript does not have any context or control outside of your browser window. ActiveX is a viable alternative, but not a good one.

In a regular web page that is not possible. The script isn't allowed to create the shell object that is needed.

You would have to use an .hta (hypertext application) page to get the permission required for this.

Example:

<html>
<head>
<title></title>
<script>
new ActiveXObject('Shell.Application').ShellExecute('Notepad.exe');
</script>
</head>
<body>
</body>
</html>

Check this page to see if it helps. But I remend you DO NOT do it.

http://www.dotnetspider./resources/19547-Run-exe-file-Java-Script.aspx

What exactly is your requirement. May be we can e up with a better solution.

This is not possible on purpose. Obviously people would not want untrusted websites to control tasks on their puter. That would make it very easy to hack in their puters.

What do you need this functionality for?

本文标签: javascript to create processStack Overflow