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://cs.kddi.com/support/login.html"
Do Until objIE.Busy = False
WScript.sleep(250)
Loop
objIE.Document.auLogin.UserID.value = "サポートID"
objIE.Document.auLogin.Password.value = "パスワード"
objIE.Document.auLogin.Submit
Set WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.AppActivate "Explorer" |
|