机器:win10
环境:.net4.5
HTTP 错误 500.21 - Internal Server Error
处理程序“ExtensionlessUrlHandler-Integrated-4.0”在其模块列表中有一个错误模块“ManagedPipelineHandler”
引起原因:
win10锁定了webconfig解决方案
解决办法:
出现这个错误是因为 IIS 7 采用了更安全的 web.config 管理机制,默认情况下会锁住配置项不允许更改。要取消锁定可以以管理员身份运行命令行 %windir%system32inetsrvappcmd unlock config -section:system.webServer/handlers
,其中的 handlers 是错误信息中红字显示的节点名称。
如果modules也被锁定,可以运行%windir%system32inetsrvappcmd unlock config -section:system.webServer/modules
win10下IIS站点访问不了,原因是因为IIS 没有.net 4.5,使用网上的aspnet_regiis.exe -i命令有问题,直接提示:
终极解决办法:
利用dism工具依次执行下面命令
dism /online /enable-feature /featurename:IIS-ISAPIFilter
dism /online /enable-feature /featurename:IIS-ISAPIExtensions
dism /online /enable-feature /featurename:IIS-NetFxExtensibility45
dism /online /enable-feature /featurename:IIS-ASPNET45
如果不能使用dism命令,打开CMD依次执行下面两条命令:
DISM.exe /Online /Cleanup-image /Scanhealth
DISM.exe /Online /Cleanup-image /Restorehealth