“Comment ouvrir Chrome dans VBScript” Réponses codées

Comment ouvrir Chrome dans VBScript

Dim iURL 
Dim objShell

iURL = "www.google.ie"

set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "chrome.exe", iURL, "", "", 1
Crocadile

Comment ouvrir Chrome dans VBScript

Dim objShell

objShell = CreateObject("Shell.Application")
objShell.ShellExecute("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "www.google.ie", "", "", 1)
Crocadile

Comment ouvrir Chrome dans VBScript

set objShell = CreateObject("WScript.Shell")
objShell.run(iURL)
Crocadile

Réponses similaires à “Comment ouvrir Chrome dans VBScript”

Questions similaires à “Comment ouvrir Chrome dans VBScript”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code