Answers for "vbscript open chrome url"

1

how to open chrome in vbscript

Dim iURL 
Dim objShell

iURL = "www.google.ie"

set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "chrome.exe", iURL, "", "", 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 "Assembly"

Browse Popular Code Answers by Language