I am trying to launch Google Chrome browser from a .NET program, with arguments. But I get strange behavior.
The following launches Chrome in 'incognito' mode from a command line. It works fine.
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --incognito
But the following does not work in .NET. Chrome does open, but not incognito and it goes to this weird URL: http://xn---incognito-nu6e/
Module Module1
Sub Main()
System.Diagnostics.Process.Start("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "–-incognito")
End Sub
End Module