Is it possible, and if so how can you launch a windows 8.1 application that has been installed on the computer from another windows 8.1 application?
I have found that for windows phone 8 you can use the following:
IEnumerable<Package> apps = Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher();
apps.First().Launch(string.Empty);
but I cannot find a windows 8 equivalent.
I have read about Uri activation and Uri schemes but was unable to find the answer to my question.
Thanks in advance for any help.