0

Recently we upgraded one of our internal servers from Windows Server 2012 R2 to 2016. There were some missing configurations in IIS and I had to reinstall extensions like Web Platform Installer, URLRewrite etc.

This upgrade also broke our .NET Core 3 hosted website and upon some investigation I found that handler configuration seems to be missing in IIS. I need help restoring the handlers.

Missing Managed Handlers Types

Thank you

General Grievance
  • 4,555
  • 31
  • 31
  • 45
SriramG
  • 1
  • 1
  • 1

3 Answers3

0

Input your type name manually. Sometimes it could not load type names in dropdown list.

Afshin
  • 1,405
  • 10
  • 18
0

You can try the following steps to solve the problem:

  • run the aspnet_regiis -ir

For x86, run C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -ir.

For x64, run C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -ir.

Or

  • click Revert to Parent in the right nav of IIS in the Handler Mappings section.
samwu
  • 3,857
  • 3
  • 11
  • 25
  • I tried this but it didn't work the IIS was already "registered" at least according to IIS but not at the OS level because the Windows folder got substituted. – SriramG Sep 22 '20 at 16:24
0

I reinstalled .NET 4.8, .NET 3.1 Core one more time to get it work. Restarted a few times in between. Not sure which one did the trick exactly though!

Thank you all for your help!

SriramG
  • 1
  • 1
  • 1