reregister microsoft store apps windows
reregister microsoft store apps windows

reregister microsoft store apps windows

Introduction

Hey there, readers! Welcome to our in-depth guide on reregistering Microsoft Store apps on Windows. Whether you’re experiencing issues with your favorite apps or simply want to freshen them up, we’ve got you covered. This article will provide you with step-by-step instructions, helpful tips, and a thorough understanding of the reregistering process.

Section 1: Understanding the Importance of Reregistering Apps

Sub-section 1a: Why Reregister Apps?

Reregistering Microsoft Store apps can address a variety of issues, including:

  • Application crashes and freeze-ups: Corrupted or outdated app registration can cause unexpected behavior and crashes.
  • App updates failing to install: A corrupted registration can prevent apps from recognizing updates, leading to installation errors.
  • App permissions not working correctly: A proper registration ensures that apps have the necessary permissions to access system resources and function properly.

Sub-section 1b: When to Consider Reregistering Apps

Consider reregistering apps if:

  • You’re experiencing persistent issues with an app.
  • An app has been updated but is still behaving unexpectedly.
  • You’ve made changes to your system configuration that may have affected app registrations.

Section 2: Reregistering Apps Using PowerShell

Sub-section 2a: Step-by-Step Instructions

  1. Press "Win + X" or right-click on the Start button and select "Windows PowerShell (Admin)."
  2. In the PowerShell window, type the following command:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}
  1. Press "Enter" and wait for the process to complete. This command will reregister all Microsoft Store apps installed on your system.

Sub-section 2b: Troubleshooting Reregistration Using PowerShell

If you encounter errors while reregistering apps using PowerShell, try the following:

  • Make sure you have administrative privileges.
  • Check if PowerShell is running in elevated mode (as administrator).
  • Verify that the AppXManifest.xml file exists in the app’s installation directory.

Section 3: Reregistering Apps Using the Command Prompt

Sub-section 3a: Step-by-Step Instructions

  1. Press "Win + R" and type "cmd."
  2. In the Command Prompt window, type the following command:
for %i in (%windir%system32AppxManifest.xml) do regsvr32 -s %i
  1. Press "Enter" and wait for the process to complete. This command will reregister all Microsoft Store apps installed on your system.

Sub-section 3b: Troubleshooting Reregistration Using the Command Prompt

If you encounter errors while reregistering apps using the Command Prompt, try the following:

  • Make sure you have administrative privileges.
  • Check if the AppxManifest.xml file exists in the %windir%system32 directory.
  • Use the "/s" option to silently register the apps without displaying any messages.

Table: Comparison of Reregistration Methods

Method Advantages Disadvantages
PowerShell Can reregister all apps at once Requires PowerShell to be installed and running in elevated mode
Command Prompt Can reregister apps without installing additional software May require manual registration for each app

Conclusion

Reregistering Microsoft Store apps in Windows can resolve a variety of issues and ensure the smooth functioning of your favorite programs. By following the step-by-step instructions provided in this article, you can easily reregister apps using either PowerShell or the Command Prompt. If you’re still experiencing difficulties, refer to the troubleshooting tips or consider reaching out to Microsoft Support for further assistance.

Don’t forget to check out our other informative articles on Windows system maintenance and optimization to keep your PC running at its best!

FAQ about Reregistering Microsoft Store Apps in Windows

How do I reregister a Microsoft Store app?

1. Open Command Prompt as an administrator.
2. Run the following command: `powershell Get-AppxPackage *APPNAME* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}`
   Replace `APPNAME` with the name of the app you want to reregister.

What if I get an error when reregistering an app?

  • "HRESULT: 0x80073CF6" means the app is not installed. Install it before reregistering.
  • "HRESULT: 0x80070002" means the app is already registered.

How can I get the app name for the command?

  • Open Settings > Apps & Features.
  • Find the app and click on it.
  • The app name is displayed in the URL at the top of the page.

What are the benefits of reregistering an app?

  • Fixes corrupted app installations.
  • Resolves app crashes or launch issues.
  • Re-establishes app permissions.

Does reregistering an app delete my data?

  • No, reregistering an app does not delete any user data or settings.

How often should I reregister apps?

  • Only when experiencing app issues or after a major Windows update.

Is it necessary to restart my PC after reregistering?

  • No, a restart is not required, but it may be necessary if the app still has issues.

Can I reregister all Store apps at once?

  • Yes, run the following command: powershell Get-AppxPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}

What is the difference between repairing and reregistering an app?

  • Repairing an app attempts to fix corrupted files, while reregistering recreates the app’s registration in the system.

Can I reregister a Windows app that came preinstalled?

  • Yes, but it is not recommended as it may cause instability.