AutomaticUpdater. How to prevent installation?

Hi,

As mentionned in another thread, I want - Check for updates / Downloads / Unpacking to happen both automatically and upon explicit user action- but I need to precisely control when the move to the next version will happen as it is subject to external elements the automaticUdpater does not know about.

No problem when I'm the one to trigger InstallNow(), but how can I catch users' "Install Update Now" requests to eventually block them? They have this action available in the menus.

Thanks.

Your case is special since your server and client need to be completely in sync. So, I recommend keeping the AutomaticUpdater completely invisible (no menus or anything) and control the AutomaticUpdater completely from code.

You'll need to use the "KeepHidden = true" property and the "Visible = false"

Ok. Thanks.