We were able limit this to one instance of the app on Windows Desktop.
I guess you use a
mutex for that.
For Terminal Server (or even in generell) do
not use a
global mutex as this would be for the whole system.
For an application with one instance you need one
mutex.
For an application with two instances you need two mutexes.
...