Posted On October 20, 2020

IIS Error Code 0x80070021

kimconnect 0 comments
blog.KimConnect.com >> Codes >> IIS Error Code 0x80070021
Error Message:
Detailed Error Information:
Module IIS Web Core
Notification BeginRequest
Handler Not yet determined
Error Code 0x80070021
Config Error This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false".
Config File \\?\C:\HooliApp\web.config
Resolution:

Run InetMgr.exe > Sites > select Hooli Support Portal > right-click Configuration Editor > Set Application Pool, Physical Path, and authentication as Pass-through > Test settings > OK

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

The 10 Commandments of C Programming

Source: some ancient programming god Thou shalt run lint frequently and study its pronouncements with…

Listing SMB Shares on a Windows Machine

Option 1: PS C:\Windows\system32> get-WmiObject -class Win32_Share Name Path Description ---- ---- ----------- ADMIN$ C:\Windows…

Add Local Windows User

# Dynamic Credential$who = whoamiif ($who.substring($who.length-2, 2) -eq "-admin"){$username=$who;}else {$username=$who+"-admin";}$password = Read-Host -Prompt "Input the…