Simplest script to open chrome and launch your favorite websites VBScript
- Make Chrome as your default browser
- 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
Post a Comment