Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim objIE
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = False
objIE.Navigate2 "[URL unfurl="true"]http://www.thespidersparlor.com"[/URL]
objIE.Visible = True
Set WshShell = CreateObject("WScript.Shell")
Set IE = CreateObject("InternetExplorer.Application")
IE.navigate2 "[URL unfurl="true"]http://www.hotmail.com"[/URL]
While IE.busy
wscript.sleep 10
Wend
IE.Visible=True
WScript.Sleep 2000
WshShell.AppActivate "Sign In"
email = "email@company.com"
WshShell.SendKeys email
WScript.Sleep 300
WshShell.SendKeys "{TAB}"
WScript.Sleep 300
WshShell.SendKeys "Password"
WScript.Sleep 300
WshShell.SendKeys "{Enter}"
Set IE = Nothing
What are you getting? That is just a command to tell the PC to wait 10 milliseconds. Nothing fancy with a Wscript.Sleep.I am running into a bug on line WScript.Sleep 10....