I'm trying to start a Remote Desktop (Client) session from inside a UWP C# app like this:
Uri mstscUri = new Uri(@"rdp://full%20address=s:<ip_address>");
await Launcher.LaunchUriAsync(mstscUri);
I keep receiving an error:
System.UriFormatException: 'Invalid URI: The hostname could not be parsed.'
If I use the same URI and simply type it into a "run" dialog, I am prompted to download an app from the Windows Store to handle the "rdp" URI.
How can I make this work in my app?