Reputation: 261
I want my windows store app to update automatically even the user turn off the automatic update button in the settings (application update).
Is it possible to achieve this?
Upvotes: 0
Views: 870
Reputation: 10346
Starting in Windows 10, version 1607, you can use an API in the Windows.Services.Store namespace to programmatically check for package updates for the current app, and download and install the updated packages.
You can also query for packages that have been marked as mandatory on the Windows Dev Center dashboard and disable functionality in your app until the mandatory update is installed.
More info , you can refer to download and install package updates for your app.
Upvotes: 2