Hi
I'm 3-months new to WPF and trying to build a launchy app for fun (app launcher type thingie by name).
I can't seem to launch ClickOnce applications by Process name.
In other words:
- Process.Start("Firefox"); // will work
- Process.Start("MetroTwit"); // a ClickOnce app - will NOT work
I've read that you should be calling it by URL? But where do you find out the URL of the installed clickonce apps?
Ideally I'd want to refresh a List of apps installed on the users system (program files & clickonce & AIR clients) every minute or so and do fuzzy search on type etc.
Help greatly appreciated.