sanjeev18 Posted February 4, 2011 Posted February 4, 2011 hey guys i want simple thing that ismy vbscript would open url in my default internet browser like internet shortcut can anyone make it ?
CoffeeFiend Posted February 4, 2011 Posted February 4, 2011 Option ExplicitDim wshSet wsh=WScript.CreateObject("WScript.Shell")wsh.Run "http://www.google.com"That will open google.com in the default browser.
gunsmokingman Posted February 4, 2011 Posted February 4, 2011 Or as a single line of vbs scriptCreateObject("WScript.Shell").Run("http://www.google.com")
gunsmokingman Posted November 5, 2019 Posted November 5, 2019 Cmd promt Echo www.google.com and open google.com Echo Off CLS Color 9F Mode 75, 17 Echo Opening www.google.com ping -n 2 127.0.0.1>nul start www.google.com ping -n 3 127.0.0.1>nul 1
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now