Microsoft Edge missing in Start menu and pins

10

3

Note: People have seem to have had issues doing this in Windows 10 pro, this could be because of Windows Updates. If the solution does not work, please use "Refresh your PC"

I have just upgraded to Windows 10 and had to switch to a Microsoft account while setting up Cortana.

Along the process, it asks me to sign out and sign back in, which I do. Then after signing back in, Microsoft Edge is missing. From the taskbar, and the "All Apps" section of the start menu.

This only occurs AFTER I have added my Microsoft account. And the only way is to open a .HTML file like this one:

The file I use to open Edge

(The name was from my Windows 7 Dualboot Install)

and please don't say "Just open the HTML file!" I need a proper solution to this.

VirtualHat

Posted 2015-07-31T16:23:57.123

Reputation: 449

This doesn't answer the question, but you could create a desktop shortcut. Simply navigate to C:\Windows\SystemApps and open the folder starting with MicrosoftEdge. Inside that folder search for MicrosoftEdge or MicrosoftEdge.exe and right click it to create a shortcut. – Jeroen – 2015-07-31T21:22:37.830

I did that, but it won't open. – VirtualHat – 2015-08-01T04:46:12.317

I am having the same issue. Although this isn't a solution, it might lead to an answer. I had to take my PC off our domain so I could do the Win10 upgrade process. I tested the OS including Edge and it worked great. I then put my PC back on the domain with a new profile (not the original domain profile). I now can't search for or launch Microsoft Edge. The app does appear in C:\Windows\SystemApps. If I find a solution i'll be sure to post it for you. – None – 2015-08-04T08:35:53.207

Don't post the answer in your question. You're allowed and encouraged to answer your own questions. – Andy – 2015-08-18T21:06:57.267

Ok, I'll edit that – VirtualHat – 2015-08-19T08:11:07.947

Answers

8

Search for PowerShell in your start menu. Right-click it and choose "Run as Administrator".

At the PowerShell command prompt, enter: Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}

VirtualHat

Posted 2015-07-31T16:23:57.123

Reputation: 449

With this command, MS Edge re-appears but all uninstalled apps also re-appears. However when I try to find for "edge" from start menu it is still not found but I can run from start > M > Microsoft Edge and pinned it. – vee – 2017-02-06T06:49:28.230

9

Here is the command to reinstall ONLY the EDGE browser. It will leave any other uninstalled apps alone.

Open PowerShell and run:

Get-AppXPackage -AllUsers -Name Microsoft.MicrosoftEdge | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” -verbose}

music2myear

Posted 2015-07-31T16:23:57.123

Reputation: 34 957