Internet Explorer を URLを指定して起動する

Internet Explorer を URLを指定して起動するサンプルコードです。

バッチ

Internet Explorer の実態であるIEXPLORE.EXEを URL を引数として起動しています。

サンプル:


"C:\Program Files\Internet Explorer\IEXPLORE.EXE"  http://www.yahoo.co.jp


Powershell

"InternetExplorer.Application" オブジェクトによりIEを起動してURLへアクセスしています。完全にロードされるまでwait しています。

サンプル:


$ie = new-object -com InternetExplorer.Application
$ie.visible=$true
$ie.navigate("http://www.yahoo.co.jp/")

While($ie.Busy)
{
Start-Sleep -milliseconds 100
}




VBS

"InternetExplorer.Application" オブジェクトにより IE を操作しています。

サンプル:


Dim ie 
Set ie = CreateObject("InternetExplorer.Application")

rem 画面に表示する
ie.Visible = True

rem URLを指定する
ie.Navigate "http://www.yahoo.co.jp/"

rem http://www.yahoo.co.jp/が完全にロードされるまで待つ

Do While ie.Busy = True Or ie.readyState <> 4
rem 1秒 wait
WScript.Sleep 1000
Loop




コマンドサンプル一覧