Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Zoom\ZoomFactor",100000,"REG_DWORD"
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.FullScreen = False
objIE.Top = 0
objIE.Left = 0
objIE.Width = 1280
objIE.Height = 964
objIE.Toolbar = True
objIE.MenuBar = True
objIE.AddressBar = True
objIE.StatusBar = True
objIE.Navigate2 "https://site2.sbisec.co.jp/ETGate/"
Do Until objIE.Busy = False
WScript.sleep(250)
Loop
Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer" |
|