Why does Chrome not start correctly when using C# Process.Start?
- by nbolton
I'm able to start Chrome successfully using this C# code:
Process.Start("chrome", "http://www.google.co.uk");
However, it does two things wrong:
It does not navigate to the URL specified in arguments
It does not re-use the existing Chrome window (it opens a new one)
I've tried using ProcessStartInfo and setting UseShellExecute and LoadUserProfile just in case these did something, but this makes no difference.
Any ideas?