我需要从WEB打开EXE [英] I need open EXE from WEb

查看:71
本文介绍了我需要从WEB打开EXE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从Web打开EXE ...

我找到了IE和MOZila的解决方案.


但是我需要从WEB

I want to open EXE from web...

i found some solution for IE AND MOZila..


but I need browser compatible Script for open EXE from WEB

推荐答案

打开EXE的浏览器兼容脚本,或者您的问题不清楚或我无法正确理解.
如果您想打开一个exe并且正在运行Windows,只需下载它并在本地计算机上运行它,
Either your question is unclear or Im unable to understand it properly.
If you want to open an exe and you are running windows, just download it and run it on your local machine,


使用Javascript打开notepad.exe

open notepad.exe using Javascript

<script>
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "C:\\Windows\\notepad.exe";
oShell.ShellExecute(commandtoRun,"","","open","1");
</script>


这篇关于我需要从WEB打开EXE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆