Hello,
Welcome to Microsoft Q&A!
How to launch the specific url in specific browser?
First of all, you could launch a specific URL in the default browser from the UWP app by calling Launcher.LaunchUriAsync Method. Like this:
// The URI to launch
var uri = new Uri(@"http://www.microsoft.com");
// Launch the URI
var success = await Windows.System.Launcher.LaunchUriAsync(uri);
But there is one thing that needs to be noticed. Only the default browser of the system will be launched. If the default browser of the system is Microsoft Edge, and this method will only launch
Microsoft Edge for the URL. There is no API for UWP that could set which browser will be launched.
Thank you.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.