ForceCheckForUpdate - not working after first updateSolved

FYI – our is WPF app.

The way I have integrated is

AutomaticUpdater.UpdateType = wyDay.Controls.UpdateType.OnlyCheck;
AutomaticUpdater.wyUpdateLocation = _

First – I check for any update available with AutomaticUpdater.ForceCheckForUpdate(); if update available then show custom screen with release notes with an option to update/upgrade.

On click on update  - I am calling this. AutomaticUpdater.InstallNow();

But I am struck with after onetime update – basically - AutomaticUpdater.ForceCheckForUpdate() – is not firing any events like CheckingFailed/ UpToDate/ UpdateAvailable 

interestingly - wyUpdate.exe says you are upto date

Any help please

, edited
Answer

It's to easy to misuse the AutomaticUpdater. Which is why we're dropping support for it in the next version (too much of a waste of our time providing support for it).

Instead, use wyUpdate directly: https://wyday.com/wybuild/help/silent-checking.php

Thanks for reply.

If you look at our requirement.

1. I should be able to check if there is an update if yes - want to display features included in that release with an option to update - else we will display up to date

2. If user click on update now - we want to install - in this case if needed I am OK to close the app and start wyUpdate so that app doesn't get re-started in the middle.

So how can check “ForceCheckForUpdate” mimic this with wyUpdate - I just looking for update available flag that's it.

Did you read the link? It covers those.