windows 下加载执行hta文件的方法

首先编写这么一个hta的文件:html

<html>
<head>
    <script>
        s = new ActiveXObject("WScript.Shell");
        s.run("%windir%\\System32\\cmd.exe /c calc.exe", 0);
        window.close();
    </script>
</head>
</html>

而后运行:url

rundll32.exe url.dll,OpenURL "c:\\Users\\10920\\Desktop\\calc.hta"

结果以下:spa

会弹出计算器来。code

相关文章
相关标签/搜索