html网页调用服务器本地exe程序的实现方法,比较简单,只需要写二个文件就可以,适合运程执行自动化软件!
实现步骤:
步骤一:写一个注册表
新建一份txt,写入以下内容,其中 weixiaolive为自定义名字,exe路径记得改为自己本地exe的路径。
具体代码:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\weixiaolive]
@="weixiaolive"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\weixiaolive\DefaultIcon]
@="C:\\Users\\Administrator\\Desktop\\8888\\8888.exe"
[HKEY_CLASSES_ROOT\weixiaolive\shell]
[HKEY_CLASSES_ROOT\weixiaolive\shell\open]
[HKEY_CLASSES_ROOT\weixiaolive\shell\open\command]
@="C:\\Users\\Administrator\\Desktop\\8888\\8888.exe"
然后将txt后缀改为reg,并双击运行!
是,即可!
注意:路径不要有中文!
步骤二:写一个HTML网页
新建一个html文件,如:222.html,写入以下内容:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>open exe</title>
<style>
a{font-size: 30px;text-decoration: none;}
</style>
</head>
<script type="text/javascript">
function run(){
document.getElementById("autorun").click();
}
</script>
<body onload="run()">
<a href="weixiaolive://"><span id="autorun"></span>老吴搭建教程</a>
<hr/>
</body>
</html>
weixiaolive 记得改成自己的名称,并带上://,222.html文件放在网站根目录下,浏览器输入:https://你的域名/222.html,即可运行自己的程序。
最后
这个方法只是运程启动你的程序,并不能在浏览器打开,如果借助其它自动脚本生成工具,生成一个自动化执行exe,就可以实现网页端一健启动,就不用远程登陆你的服务器操作了!
- 步骤一:写一个注册表
- 步骤二:写一个HTML网页
发表评论