Hello,
this question is more C# related, but for sure someone will know.
I have c# windows forms desktop app, and windows service (worker implementing BackgroundService).
I am implementing unattended updates for my app with /verysilent parameter.
I am killing both using taskkill in PrepareToInstall, but if the user in the meantime opens desktop app it screws the installation.
Therefore, as last resort, I am using CloseApplications=yes, and Inno sucessfully closes service, but not desktop app, and installer is stuck. How to make desktop app possible to be closed by inno setup?
Best regards