Simplest script to open chrome and launch your favorite websites VBScript



  1. Make Chrome as your default browser 
  2. Creat e a new vbs file with the following code


iURL = "www.google.com"

set objShell = CreateObject("WScript.Shell")
objShell.run(iURL)
objShell.run("https://mail.yahoo.com/")
objShell.run("http://www.linkedin.com/")
objShell.run("http://feedly.com/i/latest")


and so on... :)

Comments

Popular posts from this blog

Software Testing @ Microsoft

Trim / Remove spaces in Xpath?