Last active
July 19, 2017 14:16
-
-
Save crissyg/8d8fa3b390cf2501c83867a3789c5356 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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