Apr
13
2013
I get this error when installing the IIS 7.5 on my Windows 7 64bit system. So after Google around to find the solution, I've figured out that some how the ASP.NET is not installed or is not installed completely because the managed handler is used. However, I had to run the ASP.NET register IIS from the command prompt to fix this problem.
Here are the steps on how to solve it:
- Run CMD (command prompt) as Administrator
- Type or copy the following commands to the CMD and hit enter:
- %windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
- %windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i
That's how I solved the issue.
Good luck!