Celeb Glow
news | February 26, 2026

accessing `http://127.0.0.1:8080/` via wget/curl with powershell encounters "Internet Explorer engine" error, how do I do?

I have an http server running well locally.

enter image description here

I'm trying to access via wget/curl with powershell and get this error

enter image description here

The response content cannot be parsed because the Internet Explorer engine is not available

In contrast, git bash works well

enter image description here

How do I fix the problem and get the HTTP response successfully?

1 Answer

It seems Internet Explorer is not available on your machine, so the response html can not be parsed by it. You have to tell PowerShell not to use it:

curl -UseBasicParsing

But this means you wont have a DOM object in your response which is sometimes handy.

When using curl in Powershell it is just an alias to the Invoke-WebRequest cmdlet.

On Linux curl uses a completely different binary and behaves differently.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy