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
4 Answers
Reset to default 7Not 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
版权声明:本文标题:javascript to create process - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743668002a2519057.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论