WSHでIE制御
WSHでメニューバーやツールバー等のないInternet Explorerを開くスクリプトです。
Set objIE = WScript.CreateObject("InternetExplorer.Application") objIE.Navigate("http://www.goo.ne.jp") objIE.MenuBar = False objIE.StatusBar = False objIE.ToolBar = False objIE.AddressBar = False objIE.Visible = True Set objIE = nothing WScript.Quit