How to enable detailed error reporting from IIS on Windows Cloud Servers

2020-07-14 By Sam 17846 Views windows iis troubleshooting
0 reviews

Detailed error reporting is one of the popular error debugging features in the IIS web server. By default, the IIS web server error messages are disabled from being sent to users in order to prevent exposing more information outside the server.

In order to enable detailed error messages for debugging/development purposes, then need to make some adjustments in the IIS web server settings.


See the following instructions for enabling detailed error reporting for the IIS web server on Windows OS


  1. Open the IIS web server manager console from your server.

    You may open IIS Manager from the Administrative Tools program group, or you can run the following command from Windows run prompt.

    inetmgr
    

    iisreport1

  2. From the site list, click on the domain that needs to enable detailed error messages. and then double click Error Pages in the Feature view.

    iisreport3

  3. Click on the Edit feature setting from the right side Actions menu.

    iisreport4

  4. From the error responses list, check on the Detailed Error and then click OK to save the update the changes.

    iisreport5

  5. Once this is done, it will automatically add the following entries in the domain configuration file (web.conf).

    <configuration>
      <system.webserver>
        <httperrors errormode="Detailed">
      </httperrors></system.webserver>
    </configuration>
    

    iisreport6

  6. You can find the domain configuration file under the document root of the website. From the IIS, Right-click on the domain and choose Explore option to go to the document root of the website.

    iisreport7


    Once this you can see more details of error message while accessing the domain or domain URL

    iisreport8

    NOTE: Make sure to change the settings back once development/debugging is completed.


Related Tutorials


What do you think about this article?

Rate this article
Need assistance?

Try this guide to receive free bundled services at signup on a new free account.

Sign Up

Your Feedback Is Important

We hope you’ll give the new products and updates a try. If you have an idea for improving our products or want to vote on other user ideas so they get prioritized, please submit your feedback on our Community platform. And if you have any questions, please feel free to ask in the Community or contact our Technical Support team.