Skip the question Closing the updated program

Hi,I have a WPF application. I Use the Automatic updater controlI Use the eventvoid automaticUpdater_ReadyToBeInstalled(object sender, EventArgs e) { automaticUpdater.InstallNow(); }When I call InstallNow() a dialog appears to close the process of my applicationIs it possible to skip this question dialog and make the automaticUpdater close the process without asking the userBest regardsRodi

If you close your application fast enough this dialog will not appear. So, call InstallNow() as close to your app closing as possible (so handle all the cleanup and other slow execution first, then begin the update process).