Restore Windows App for standard User

giobaxx 1 Reputation point
2022-06-09T20:35:08.823+00:00

Good Evening

I need an help to understand if it possible to restore all the windows app for all users in a domain computer where the Windows Store has been disabled.

I google a lot but the PowerShell command

Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}  

seems to work only for the users which have admin right not for all the users.

I made something wrong?

A.

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,559 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,354 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,336 Reputation points
    2022-06-13T07:23:55.4+00:00

    Hi Giobaxx,

    If your domain administrator has disabled the Windows Store, there is no way to enable it without removing the PC from the domain and therefore the GPOs controlling it. Unless you have access to the domain and Group Policy, in which case you can do the following:

    1) Launch Group Policy Management Console (GPMC).
    2) Navigate to the Computer Configuration | Administrative Templates | Windows Components | Store node.
    3) Locate the “Disable all apps from the Windows Store” policy and double-click to open it. Select the radio-button next to Disabled, then click the OK button to disable the policy. This will enable any application(s) installed from the Microsoft Store and will allow them to run.
    4) In the same GPMC node above in step #2, locate the “Turn off the Store application” and double-click to open it. Select the radio-button next to Disabled, then click the OK button to disable the policy. This will enable the Microsoft Store completely, making it accessible to users.


    --If the reply is helpful, please Upvote and Accept as answer--

    0 comments No comments