本文介绍了使用Java启动,停止Windows服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
谁能告诉我如何使用javascript启动和停止Windows服务.
感谢
Hello,
Can anyone plz tell me how to start and stop windows service using javascript.
thanks
推荐答案
function runBat()
{
var str = "c:\test.bat";
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run (str,1,true);
}
要运行javascript功能,需要配置浏览器安全性,以允许运行ActiveXObject.
to run above javascript function, your browser security needs to be configured, to allow run ActiveXObject.
这篇关于使用Java启动,停止Windows服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!