'create ie object
Set ie = WScript.CreateObject("InternetExplorer.Application.1")
'set the ie properties
ie.ToolBar = 0
ie.StatusBar = 0
ie.Width = 0
ie.Height = 0
ie.Left = 0
ie.Top = 0
ie.Visible = 1
'navigate to a web page
ie.Navigate("https://www.registry.ernet.in/admin/send_reminder_emails.aspx")
'wait until the page has loaded before continuing
wscript.sleep(50000)
'quit ie
ie.quit
No comments:
Post a Comment