How can I check for updates silently?

Add-in Express™ Support Service
That's what is more important than anything else

How can I check for updates silently?
 
Inspirometer Developer




Posts: 34
Joined: 2017-10-13
My current update code is very simple and looks just like this:

if (IsNetworkDeployed())
{
    CheckForUpdates();
}


This works fine but every time Outlook is started a "Launching Application" form pops up. Is there a way that I can check for updates without that window popping up? Alternatively is there a way I can just check for updates without actually updating?
Posted 02 Nov, 2017 11:14:04 Top
Andrei Smolin


Add-in Express team


Posts: 18821
Joined: 2006-05-11
Hello,

You can't bypass this: this is the way ClickOnce works. You could switch to using ClickTwice. It provides far more options including automatic updates.


Andrei Smolin
Add-in Express Team Leader
Posted 03 Nov, 2017 07:07:07 Top