"Update wiil be installed on next start" message

Is there a way to let the "Install now" message be the default one?

OR! Better yet, is there a way that after the updates have been successfully downloaded - have the update be automatically installed?

OR! Better yet, is there a way that after the updates have been successfully downloaded - the application will be automatically closed and then have the update be automatically installed?

Thanks!

OR! Better yet, is there a way that after the updates have been successfully downloaded - the application will be automatically closed and then have the update be automatically installed?

Yes, on the UpdateReadyToBeInstalled event call InstallNow().

That is what Ive tried:

Private Sub AutomaticUpdater_ReadyToBeInstalled(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AutomaticUpdater.ReadyToBeInstalled AutomaticUpdater.InstallNow() End Sub

Never worked.

My mistake. it did work. Thanks.