0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

IEを起動させる方法 (Windows 11 25H2で確認)

Posted at

VBScriptで起動

  • ie.vbs とかファイルに以下を記述し実行。(sjisで保存のこと)
Set objIE = CreateObject("InternetExplorer.Application")

' 1. IEウィンドウを可視化して起動する (about:blankのような状態)
objIE.Visible = True

' 2. 少し待機する(IEが完全に初期化されるのを待つことで安定性が増す)
WScript.Sleep 500 ' 0.5秒待機

' 3. 目的のURLへ移動する
objIE.Navigate "https://www.google.co.jp" 

' ※ WScript.Sleep 500 を削除しても動作する場合があります。

batで起動

  • ie.bat とかファイルに以下を保存し実行

初期値はMSNのホームページが表示される。レジストリか何かで変更できそう

"C:\Program Files (x86)\Internet Explorer\iexplore.exe" file:/// -embedding
  • 以下の場合はURLがabout:blank -embeddeingとなるが起動できるのであとはURLかブックマークで遷移
"C:\Program Files (x86)\Internet Explorer\iexplore.exe" about:blank -embedding

PowerShellで起動

# 1. IEのCOMオブジェクトを作成
$ie = New-Object -ComObject "InternetExplorer.Application"

# 2. IEウィンドウを可視化する
$ie.Visible = $true

# 3. 目的のURLへ移動する
$ie.Navigate("https://www.google.co.jp")
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?