Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UWP App update with own server

I'm searching a way to update a Windows Universal App without the Store, so i can provide the appxbundle file from my own server. I can download this package from within the app, but i have not found a solution for installing it. The device portal core API allows only the Installation of apps, but not updating. So is there a way I can start the updating process from within my app's code?

like image 512
andy Avatar asked Dec 08 '25 17:12

andy


1 Answers

You can package your app for Web Install, which works very similarly to Click Once for classic desktop apps. This involves pointing the user to a link with ms-appinstaller: protocol which will launch the app installer and install the package. You define the .appinstall file which contains a standardized description of the components of the app, the location of potential updates, and specifies an update policy. Automated update are described in depth in this blog post.

Update

In addition to web install, you can apparently update the app using PackageManager. See this blog post for details.

like image 194
Martin Zikmund Avatar answered Dec 11 '25 07:12

Martin Zikmund



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!