Enabling Detailed Errors
By default, IIS hides detailed error messages however you can enable it through either of the following ways.
Obviously this should only be enabled in a non-production environment as it may create potential security implications.
IIS Manager Console method
- Open the IIS Manager console
- Click your website node
- Open the ‘Error Pages‘ configuration screen
- Click ‘Edit Feature Settings‘ from the right hand menu
- Choose the ‘Detailed errors‘ option.


Web.config file method
<configuration> <system.webServer> <httpErrors errorMode="Detailed" /> </system.webServer> </configuration>
Result
Before enabling detailed error messages

After enabling detailed errors

Latest posts by Shane Bartholomeusz (see all)
- AZ-204 Exam Study Guide (Developing Solutions For Microsoft Azure) - 17th March 2021
- Solved: PDF Printer Missing in Win 10 - 18th February 2021
- Azure CRON Expression – Cheat Sheet - 14th January 2021
Leave a Reply