Skip to content

Instantly share code, notes, and snippets.

@crissyg
Last active July 19, 2017 14:16
Show Gist options
  • Save crissyg/8d8fa3b390cf2501c83867a3789c5356 to your computer and use it in GitHub Desktop.
Save crissyg/8d8fa3b390cf2501c83867a3789c5356 to your computer and use it in GitHub Desktop.
'VBScript - launch browsers on Windows OS
'Description: This vb scripts launches IE, Chrome and Firefox to the url www.msn.com
'by crissyg
Set WshShell = WScript.CreateObject("WScript.Shell")
Return = WshShell.Run("iexplore.exe www.msn.com", 1)
Return = WshShell.Run("chrome.exe www.msn.com", 1)
Return = WshShell.Run("firefox.exe www.msn.com", 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment