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

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.

Was this answer helpful? 0 Users Found This Useful

Related Articles

How to Resolve the “Exceeded Connection Limit” Issue on a Port 3389 Terminal Server

Some customers may encounter the message “The terminal server has exceeded the maximum number of...

Windows Server Remote Desktop Connection Tutorial

Detailed Guide to Windows Remote Desktop Connection Remote Desktop Protocol (RDP) is a built-in...

Windows Firewall

Open Windows Firewall with Advanced Security Go to Inbound Rules → New Rule Select...

How much hard disk and memory configuration does a Windows virtual machine require?

Many users often have doubts about configuration choices when purchasing or deploying Windows...