I am working on a WPF app, and I would like to include a button that directs it to another app. I would like it to have the following functionality:
- If the app is installed on the user's computer, it opens the app for them.
- If the app is not yet installed, it sends them to a link where they can download the app.
I know I will need to use Process.Start to open the app, but I am stuck on how to check if the app exists. If anyone could point me in the right direction it would be appreciated!