Sub Test_Chromes_Rutilants()
Dim PF_path$, cmdCHR$, strURL$
If Environ("ProgramW6432") = "" Then
PF_path = Environ("ProgramFiles")
Else
PF_path = Environ("ProgramFiles(x86)")
End If
cmdCHR = PF_path & "\Google\Chrome\Application\chrome.exe"
strURL = "https://www.excel-downloads.com"
Shell (cmdCHR & " -url" & strURL)
End Sub