Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Preferred way to deliver UWP app without Windows Store

I need to deliver an UWP app (*) that the client will install on tablets inside their network. The Windows Store is blocked by policy.

There is a procedure for signing and sideloading an .appx package (https://blogs.msdn.microsoft.com/micham/2014/05/30/sideloading-store-apps-to-windows-8-1-devices/) but it's very complicated.

Is there a way to bundle the app as an .msi or .exe (or APP-V package) instead?

(*) It must be an UWP app to register as a File Open Picker.

like image 487
Peter Avatar asked Feb 20 '17 16:02

Peter


1 Answers

Yes of course it is possible to create an installer for your app, in Visual Studio go to "Project\Store\Create App Packages..." menu and when it will ask you if you want to upload the packages to Windows Store simply click No.

This will generate the app packages plus an easy to run powershell script that when run will install the app (or upgrade to a new version if there was a previous one already installed)

like image 200
Dark Templar Avatar answered Nov 12 '22 15:11

Dark Templar