How to turn off ClickOnce: "check application requirements"

Users complain about the Outlook plug-in created by my developers, stating that when you open Outlook, the message “Check application requirements” appears. We want the check to take place, but users asked to hide it. Can this be done, and if so, what can I say to my developers? (In which direction should I point them?) Thanks for any help!

+4
source share
1 answer

This dialog appears when the application checks for updates, and you can not do anything with it; this is inherent to ClickOnce deployment. It also basically checks the server to make sure that nothing has changed in your deployment (i.e. it has been changed).

You can stop using automatic updates and use updates manually instead, and also write some programs for this, but frankly, this is a big problem just to not open basically the security / progress dialog. It would be easier to educate users ...

+2
source

Source: https://habr.com/ru/post/1306375/


All Articles