Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

如何在Windows 11啟動獨立的IE瀏覽器;擺脫Edge的IE模式

$
0
0

原本以為在Windows 11裡已經無法啟動獨立的IE瀏覽器了,沒想到微軟還是留了一個後門:可以用COM Object來操作IE瀏覽器。
以下介紹使用VBS與,AutoHotkey的作法,讓獨立執行的IE瀏覽器能「起死回生」。

1. VBS

  1. 使用文字編輯器撰寫下列程式碼:
StartURL = "about:blank" 
set IE = CreateObject("InternetExplorer.Application") 
IE.Visible = true 
IE.Navigate StartURL
  1. 將檔案存成 ie.vbs (副檔名必須為.vbs)
  2. 執行ie.vbs,Windows會叫用wscript.exe執行
  3. 若.vbs檔案關聯有誤,則自行設定檔案類型關聯即可

01|700

2. AutoHotkey

使用AutoHotkey操作COM物件:

  1. 使用文字編輯器或Advanture IDE撰寫下列程式碼:
#SingleInstance Force

;;StartURL := "about:blank"
StartURL := "https://google.com"

ie := ComObjCreate("InternetExplorer.Application") ;create object
ie.visible := true 
ie.navigate(StartURL)
While ie.readyState != 4 || ie.document.readyState != "complete" || ie.busy  
   sleep 10
  1. 檔案總管→在ie.ahk上開啟右鍵功能表→Compile Script以產生ie.exe。
  2. 若Compile Script出現錯誤,直接執行C:\Program Files\AutoHotkey\Compiler\ahk2exe.exe,指定好檔案後按〔Convert〕

3. 相關鏈接

4. 教學影片

##您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles