Vbscript How to Open Up Various Browsers with Website URLS

Channel:
Subscribers:
11,400
Published on ● Video Link: https://www.youtube.com/watch?v=LeeuC3MfcpA



Category:
Guide
Duration: 8:12
15,281 views
104


This video shows you how to use Vbscripts to open websites with the following browsers, Chrome, Firefox, Internet Explorer, and Opera.

Here are the scripts for each

Internet Explorer

DIM A
Set A=CreateObject("Shell.Application")
A.ShellExecute "Iexplore.exe","https://www.google.com","","",1

Firefox

DIM B
Set B=CreateObject("Shell.Application")
B.ShellExecute "Firefox.exe","https://www.google.com","","",1

Chrome

DIM C
Set C=CreateObject("Shell.Application")
C.ShellExecute "Chrome.exe","https://www.google.com","","",1

Opera

DIM D
Set D=CreateObject("Shell.Application")
D.ShellExecute "Opera.exe","https://www.google.com","","",1

I have a website which contains the links to all my batch programming videos.

https://he-1000-1975.com/video-directory/#F







Tags:
Vbscript Open Internet Explorer
Vbscript Open Firefox Browser
Vbscript Open Chrome Browser
Vbscript Open Opera Browser