Answers for "vbscript to launch chrome"

0

how to open chrome in vbscript

Dim objShell

objShell = CreateObject("Shell.Application")
objShell.ShellExecute("C:Program Files (x86)GoogleChromeApplicationchrome.exe", "www.google.ie", "", "", 1)
Posted by: Guest on July-01-2021
0

how to open chrome in vbscript

set objShell = CreateObject("WScript.Shell")
objShell.run(iURL)
Posted by: Guest on July-01-2021

Code answers related to "vbscript to launch chrome"

Code answers related to "Assembly"

Browse Popular Code Answers by Language