Installing cordova / phonegap on Windows 8.1 for all users

I have a well-working application written in Cordova JS / angular compilation, I can install it on Windows 8.1, but this application is installed for one user. What does it mean?

I have two users on a tablet / PC. When I install my application on the first account, it will not be installed on the second account. I can not start this application from the second account.

I am compiling an application in MS Visual Studio 2015.

How can I install the Cordova app for all users ? Also for these users who do not have administrator rights. Is it possible? If so, I would expect a shared folder for data exchange between all users of this device. I'm wrong?

I believe there are some solutions for configuring applications or modifying the installation of Windows PowerShell Script

+5
source share
1 answer

Metro style apps are installed by default for each user only. The installer package for the application cannot change this. If you want to install the metro application for all users, you need to use a special deployment tool called DISM. More on this here:

http://www.verboon.info/2012/02/managing-windows-8-metro-style-apps-with-dism/

+2
source

Source: https://habr.com/ru/post/1235156/


All Articles