Background
I can run this UWP application by running the following:
test://argument=123?other=true
This would run the UWP application that is linked to the test:// protocol and the application would automatically take that argument=123?other=true, parse it and perform the actions specified by those parameters.
Desired outcome
However, I would like to run the application without using any protocol and directly via the executable.
What I've tried
So far, I've came up with the following:
"C:\Program Files\WindowsApps\PackageId\Windows10Universal.exe" -ServerName:ActivatableClassId
This does not pass in the parameters so it doesn't automatically perform what I would like it to. I have tried the following but it does not work either:
"C:\Program Files\WindowsApps\PackageId\Windows10Universal.exe" -ServerName:ActivatableClassId "argument=123?other=true"
I've also tried to investigate by using Process Monitor and Process Explorer to see what Windows is doing behind the scenes but I can't seem to find out.