how to open chrome in vbscript

To open Google Chrome using VBScript, you can use the following code:

Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "chrome"

This code creates a WshShell object and uses its Run method to execute the "chrome" command, which opens Google Chrome.

Please note that you need to have Google Chrome installed on your computer for this code to work.