Google Analytics へ自動ログインするスクリプト

var IE = WScript.CreateObject("InternetExplorer.Application");
IE.Visible = true;
IE.Width = 1000; IE.Height = 800;
IE.Navigate("https://www.google.com/accounts/ServiceLoginBox?"
 + "service=analytics&nui=1&hl=ja-JP&"
 + "continue=http://www.google.com/analytics/home/%3Fet%3Dreset");
while(IE.busy) ;
while(IE.Document.readyState != "complete") ;
IE.Document.forms[0].Email.value = "YOUR MAIL ADDRESS";
IE.Document.forms[0].Passwd.value = "YOUR PASSWORD";
IE.Document.forms[0].submit();



- ref.: たつをの ChangeLog
  http://nais.to/~yto/clog/2005-11-06-1.html