Thanks in advance,
I want to launch my url in the new window of the legacy edge browser.
As of now, every time I launch the url, a new tab gets added to the existing window which I don't want.
Here is what I have tried:
Uri url = new Uri("https://www/google.com");
Process.Start(new ProcessStartInfo
{
FileName = "microsoftedge.exe",
Arguments = url.ToString() + "--new window",
WindowStyle = ProcessWindowStyle.Normal
});