我正在构建一个 .hta(使用 javascript),我想从中启动几个应用程序。
但是当我执行我的 .hta 时,我收到错误消息找不到文件
这是代码:
<script type="text/javascript" language="javascript">
function RunFile(path) {
var relpath = window.location.href;
var fullpath = relpath + path;
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(fullpath, 1, false);
}
RunFile("\file.exe");
</script>