如何使用網頁 執行 .exe 檔 - Firefox、IE - 2012

在 Windows 要如何用網頁來控制呼叫執行某個 exe 檔, 這邊紀錄 Firefox 和 IE 的作法.

於 IE 呼叫執行 .exe 檔寫法 (ActiveX)

下述摘錄自此篇: How to run .exe on a Webpage

IE only

  1. <a href="javascript:LaunchApp()">Click here to Execute your file</a>
  2. <script>
  3. function LaunchApp() {
  4. if (!document.all) {
  5. alert ("This ActiveXObject is only available for Internet Explorer");
  6. return;
  7. }
  8. var ws = new ActiveXObject("WScript.Shell");
  9. ws.Exec("D:\\Software\\youfile.exe");
  10. }
  11. </script>

於 Firefox 呼叫執行 .exe 檔寫法

下述摘錄自此篇: Run .exe on a Webpage using Firefox

  1. <a href="javascript:LaunchApp()">Click here to Execute your file</a>
  2. <script>
  3. function LaunchApp() {
  4. netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
  5. var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
  6. file.initWithPath("D:\\Software\\yourfile.exe");
  7. file.launch();
  8. }
  9. </script>

作者: Tsung

對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.

在〈如何使用網頁 執行 .exe 檔 - Firefox、IE - 2012〉中有 2 則留言

發表迴響

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料