KB5066835 update causing IIS Service to not work

Sashi Kumar 405 Reputation points
2025-10-15T10:06:37.1166667+00:00

Recently my local hosted IIS services is not running after the new update. My visual studio projects also can't be run as well. I have to delete the new update in order to run my projects and local hosted services again. May I know what is the problem?

Developer technologies | ASP.NET Core | Other

Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

Answer accepted by question author
xavier ubikos 175 Reputation points
2025-10-16T05:23:40.57+00:00

Hi there!

This morning there was a Defender update, I have installed it an now it works!!!

Was this answer helpful?

20+ people found this answer helpful.

50 additional answers

Sort by: Newest
  1. Dave Payne 10 Reputation points
    2025-10-15T13:28:50.5366667+00:00

    We had the same issues here and only way round to fix it was to run the following commands to remove the KB's from command prompt run as administrator

    wusa /uninstall /kb:5066835 and

    wusa /uninstall /kb:5065789

    This also stopped IIS from running and now that runs as well with no issues

    Was this answer helpful?

    1 person found this answer helpful.
  2. Johannes Bauer 0 Reputation points
    2025-10-15T13:05:52.93+00:00

    we have tried with windows 11 25h2 and it did not fix it, any other suggestions?

    Was this answer helpful?

    0 comments No comments
  3. Federico Mariano 5 Reputation points
    2025-10-15T12:33:26.61+00:00

    Same problem here - Uninstalling update KB5066835 fixed it! I did it on 100 computers that have my service installed

    Was this answer helpful?

    1 person found this answer helpful.
  4. Bogdan Cristian Razvan 10 Reputation points
    2025-10-15T12:32:44.79+00:00

    KB5066835 breaks WCF .svc endpoints (no custom headers/middleware involved)

    After installing Windows 11 KB5066835 (24H2/25H2), plain WCF .svc endpoints stop working , even in a minimal setup with no custom headers, middleware, or reverse proxies. The same service works immediately after uninstalling the KB.Invoke-WebRequest http://localhost:9011/mysvc?wsdl -UseBasicParsing

    Invoke-WebRequest : The underlying connection was closed: An unexpected error occurred on a receive.

    At line:1 char:1

    • Invoke-WebRequest http://localhost:9011/mysvc?wsdl -UseBasicPa ...
    • 
          + CategoryInfo          : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest], WebException
      
          + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand
      

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments