Britec Tech Support Forum

Full Version: Edge link to reinstall it in the Windows Powershell
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Help! I'm trying to delete my edge program from my computer and reinstall it. Can anyone send me the link that I copy and paste in the Windows Powershell to get it up and running again? Please send it to my email address at goodeateach2@gmail.com
1. Right click on Start button and open Command Prompt as Admin. 

2. Type powershell  and hit enter. 

3.  Paste this command:

Code:
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Hit enter and wait.

If that don't work, try this command:

Code:
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}