Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Distributing private win app in UWP

Tags:

uwp

SCENARIO

I'm new in UWP tech and i would like to create and distribute my first UWP app.

It's a company app so it won't be sold and it won't be public on the store. Then i will edit the app and i will deploy it again.

I can't find docs about it.

QUESTIONS

Is there a particular process to do it (or it consists only of a copy of files - i read about powershell)? I already read Is the Windows App Store required for a UWP application? so you can avoid LOB solution. Moreover that post starts from a known solution.

Is it easy for the final user the process of updating it? Easy=opinion so: can you describe it?

like image 923
Emanuele Avatar asked May 30 '17 11:05

Emanuele


People also ask

How do I distribute my UWP app?

If you are distributing your app via the Microsoft Store, Visual Studio can associate your package with the Store. To do this, right-click your project name in Solution Explorer and choose Publish->Associate App with the Store (before Visual Studio 2019 version 16.3, the Publish menu is named Store).

Where can I publish my Windows app?

You can use Partner Center to publish your apps and games to the Microsoft Store.

Are UWP apps sandboxed?

AFAIK, all Windows UWP apps are sandboxed within %ProgramFiles%\WindowsApps , with different apps granted different ACL permissions depending on the access they require. While UWP applications are installed in that directory, UWP applications still have access to specific user directories.


1 Answers

  1. For enerprises there is Microsoft Store for Business which makes an app available only to associated accounts: https://docs.microsoft.com/en-us/windows/uwp/publish/distribute-lob-apps-to-enterprises

  2. You can publish an app to regular Store but hide it and make available only using promotion code.

  3. There is always posibility to sideload your app, which means running powershell that installs your app. In visual studio you can distribute your app trough Hockey App, which is portal where you upload your app and invited users will be notified about new version. However, they will need to download it, unpack and run the powershell.

like image 104
Liero Avatar answered Oct 01 '22 02:10

Liero