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. Predhin Tom Sapru 0 Reputation points
    2025-10-17T04:34:03.1366667+00:00

    Any idea when is microsoft planning for issue fix ? thanks

    Was this answer helpful?

    1 person found this answer helpful.
  2. Ryan Harrison 5 Reputation points
    2025-10-16T18:34:57.5366667+00:00

    As others have mentioned, there was a silent fix that went out this morning that has fixed systems after a reboot.

    Any word from Microsoft as to whether this was a one time 'fix'? Concern is systems that have downloaded KB5066835 but haven't installed it yet.

    Was this answer helpful?

    2 people found this answer helpful.
  3. Patrick Dugan 5 Reputation points
    2025-10-16T13:28:23.8833333+00:00

    AVG updated on my PC this morning (10/16/2025) (I did not uninstall any KBs) and rebooted and now the local IIS is working correctly.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  4. Juan Castillo 0 Reputation points
    2025-10-16T12:59:27.7166667+00:00

    Somehow I am not able to uninstall update KB5066835 by any method, I tried through Windows Update > Update History > Uninstall Updates and by CMD using wusa

    So my final fix was creating a .reg file with this content to disable HTTP/2:

    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IIS\Parameters]
    "EnableHttp2"=dword:00000000
    

    After run it and restart my PC I was able to run my projects again.

    Once Microsoft releases a new patch for this I think we can roll back again using the same .reg file with this:

    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IIS\Parameters]
    "EnableHttp2"=dword:00000001
    

    Was this answer helpful?

    1 person found this answer helpful.