I am currently facing the problem of only deploying a clickonce application for a single instance, and maybe someone has a good idea about this.
My application is called by a web application that passes parameters to this exe. Now the problem is that if the application is already running, it takes quite a while until a new instance is launched, the parameters are transferred to the executable instance and closed (with opening the URL, checking for updates, ...).
So, is there a way to detect that an executable instance exists without introducing a new small application that does this discovery?
The goal is to reduce the time that the second, third, ... call should get the parameters for the executable instance.
source share