I have a very simple vbscript code:
Dim path As String = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
Dim executable As String = Path.Combine(path, "Google\\Chrome\\Application\\chrome.exe")
Process.Start(executable, "http://google.com")
When I execute the file, I got the following error:
Expected end of statement
What am I doing wrong?
