How to Fix Microsoft Edge Error Code inet_e_download_failure in Windows 10
How to Fix Edge Error Code inet_e_download_failure [SOLVED]
Commands:
Run CMD as Administrator and type in following commands as described in videos
For Build 10158 or newer:
CheckNetIsolation LoopbackExempt -a -n=Microsoft.MicrosoftEdge_8wekyb3d8bbwe
PS:Some users got an "invalid parameter error" and as suggested by the comment from our reader below (Steve). Adding quotes seems to do the job:
CheckNetIsolation LoopbackExempt -a -n="Microsoft.MicrosoftEdge_8wekyb3d8bbwe"
For previous builds:
CheckNetIsolation LoopbackExempt -a -n=Microsoft.Windows.Spartan_cw5n1h2txyewy
The connection to the website was reset.
Error Code: INET_E_DOWNLOAD_FAILURE
Microsoft Quotes on
https://blogs.msdn.microsoft.com/msgulfcommunity/2015/07/01/how-to-debug-localhost-on-microsoft-edge/
Hello Developers!
You might have already heard that Windows 10 will run Microsoft Edge an all-new browser that’s built to give you a better web experience. Microsoft Edge is the browser for the modern web. If you are developer you might be really interested in the Dev center for the new browser, you can check it on this link http://dev.modern.ie/. There you will find lots of tools and resources and you can also:
Check Platform Status
Test and debug your site with free tools
Explore Demos
View standards roadmap
Give feedback and suggest features
Get Support
Anyways, back to the main topic. How to run/debug a localhost website on Microsoft Edge. You most likely will run/debug a website locally on Edge since it the default Browser of Windows 10. Problem arises when you do so and you will have an error, something like the following screenshot(Build 10130):
This happens because Edge runs as a Windows modern app different from IE and thus it is has network isolation by default for security reasons. In order to resolve this issue, we need to enable loopback and debug the localhost server by running the following command from an elevated shell (which I found in the FAQs page on MSEdge Dev) :
For Build 10158 or newer:
CheckNetIsolation LoopbackExempt -a -n=Microsoft.MicrosoftEdge_8wekyb3d8bbwe
PS:Some users got an "invalid parameter error" and as suggested by the comment from our reader below (Steve). Adding quotes seems to do the job:
CheckNetIsolation LoopbackExempt -a -n="Microsoft.MicrosoftEdge_8wekyb3d8bbwe"
For previous builds:
CheckNetIsolation LoopbackExempt -a -n=Microsoft.Windows.Spartan_cw5n1h2txyewy
You can read more on loopback exemption and network isolation in Windows Runtime apps on this MSDN article.
Happy browsing!