Windows Store doesn't work on other user accounts, but works with one user account

Thomas Rabach 1 Reputation point
2021-01-27T19:13:10.87+00:00

Hi!

I have a Lenovo T14s laptop with Windows 10 Pro Version 20H2 installed. Windows Store doesn't work in the standard user account, while it works in the administrator account. When launching the Windows Store on the standard user account, it shows a message "This app can't open".

I tried all below options, Nothing worked

  1. Run WSReset.exe.
  2. Re-register Windows Store by running the following commands in PowerShell started as Administrator:
    PowerShell -ExecutionPolicy Unrestricted
    $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest

Any help?

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,778 questions
Windows 10 Compatibility
Windows 10 Compatibility
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Compatibility: The extent to which hardware or software adheres to an accepted standard.
459 questions
Windows 10 Setup
Windows 10 Setup
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
1,912 questions
{count} votes

3 answers

Sort by: Most helpful
  1. S.Sengupta 15,756 Reputation points MVP
    2021-01-27T23:50:46.767+00:00
    1 person found this answer helpful.
    0 comments No comments

  2. Kapil Arya 7,766 Reputation points MVP
    2021-01-28T06:38:35.97+00:00

    Hello,

    Try re-registering Store app with different command. Perform these steps:

    1. Open Windows PowerShell as administrator.
    2. Then type following command and press Enter key: Get-AppXPackage WindowsStore -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

    Let the command complete.

    Close Windows PowerShell.

    Let me know if issue still persists!


  3. Jenny Feng 14,081 Reputation points
    2021-01-28T07:41:31.98+00:00

    Hi,
    You could try the following steps:
    Press Win+R, type regedit , then HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System, and it corresponds to "FilterAdministratorToken" (see https://technet.microsoft.com/en-us/library/dd835564%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396 ) which you have to change from 0 (disabled - default setting) to 1 (enabled), according to this post.
    Hope above information can help you.

    ============================================
    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.