Install Windows Store App package (*.appx) for all users

6

I know there are several posts where users want to install Windows Store Apps for all users. Answers were to use DISM.

In my case I can not use DISM because all clients are already deployed. If a user requests a new app at the supports center, the package will be deployed to his machine.

This package (*.appx) should be deployed to the machine not only for the user.

Is there a powershell command to achive this?

Martin

Posted 2013-09-20T07:09:50.240

Reputation: 182

does this work for windows 10 uwp? – thilina R – 2018-04-17T13:32:44.487

2The only way to do this I know us to run an elevated command prompt and point to the .appx file. The solution of course is create a script file that is ran when the user logs in, which will add the applications, which will run once. I don't believe there to be a solution which involves deploying to the machine rather then the user. Powershell can manage what I describe with a simple script and the command add-appxpackage C:\ContosoApp\ExpenseApp.appx – Ramhound – 2013-09-20T11:14:18.327

this is who we do it now. ;) ... but one point is that we want to reduce the number of scripts running on startup. – Martin – 2013-09-20T12:10:38.270

Like I said the article I found is pretty clear. It basically says there isn't a way to deploy a WS application to the machine unless you use the image method. Of course that isn't different compared to say a desktop application. You have to basically deploy the installation in a similar matter unless you build it into the application itself at least on Windows Vista and Windows 7. Windows XP barely had the concept of user seperation. – Ramhound – 2013-09-20T12:25:55.707

Answers

3

You can do this through the DISM.EXE /Online /Add-ProvisionedAppxPackage command. More info here

user1009013

Posted 2013-09-20T07:09:50.240

Reputation: 128

does this work for windows 10 uwp? – thilina R – 2018-04-17T13:32:34.823