I have an app that is configured to run at startup. It doesn't have a UI, it goes to the system tray and do its stuff all day while the user is logged in.
The app should be updated automatically without the user even notice, I don't want to disturb the user. How can I do this with msix?
I have problems with AppInstaller automatic updates because the app is always running, beside it's so buggy. This code it's working to some extend. It closes the app, does the update, but it doesn't launch the app after the update. I need the app to run immediately after the update without user intervention. How can I do that?
var result = await Package.Current.CheckUpdateAvailabilityAsync();
switch (result.Availability)
{
case PackageUpdateAvailability.Available:
case PackageUpdateAvailability.Required:
PackageManager packagemanager = new PackageManager();
await packagemanager.UpdatePackageAsync(new Uri("path-to-file.msix"), null, DeploymentOptions.ForceApplicationShutdown);
break;
case PackageUpdateAvailability.NoUpdates:
// Close AppInstaller.
MessageBox.Show("Non-updates");
break;
case PackageUpdateAvailability.Unknown:
default:
MessageBox.Show($"No update information associated with app");
break;
}
The solution was in this page: https://learn.microsoft.com/en-us/windows/msix/non-store-developer-updates#automatically-restarting-your-app-after-an-update
Call RegisterApplicationRestart() before starting the update.