var IE = WScript.CreateObject("InternetExplorer.Application"); IE.Visible = true; IE.Width = 1000; IE.Height = 1000; IE.Navigate("https://associates.amazon.co.jp/gp/associates/login/login.html"); while(IE.busy) ; while(IE.Document.readyState != "complete") ; IE.Document.all('sign-in').email.value = "YOUR MAIL ADDRESS"; IE.Document.all('sign-in').password.value = "YOUR PASSWORD"; IE.Document.all('sign-in').submit();