I know there are similar questions related to my question in stackoverflow and you may consider this question as a repeated question, but none of the related questions helped me to solve this problem.
I have a WPF application on my client and also a ASP.NET Web API application hosted on the IIS in the same system.
I need to start the WPF Application from the hosted Web API Methods.
The application can be closed from the API using Process.Close.
When I try to start the application using Process.Start(processstartinfo), it is showing in the taskbar (when I check the show process from all users), but not showing in the Desktop UI.
Please help me guys to solve this problem.