65.9K
CodeProject is changing. Read more.
Home

Recover IIS When ApplicationHost.config is Ruined

starIconstarIconstarIconstarIconstarIcon

5.00/5 (9 votes)

Aug 2, 2013

CPOL
viewsIcon

59305

Introduce how to recover IIS when it is broken by bad editing to applicationHost.config

Issue Description 

Sometimes we have to manually modify applicationHost.config. It is risky because bad editing can ruin the file and cause IIS to be broken. IIS cannot recover even after we have fixed the errors in all applicationHost.config files appeared on the machine and have restarted the machine.

Solution 

The solution is to use AppCmd.exe. We can find it in C:\Windows\System32\inetsrv.

First, we use "appcmd list backup" to display all the available backups. Then we pick out a proper backup and use "appcmd restore backup <backup name>" to recover IIS. You could see these steps in the following screenshot: 

Note: You need to open the backup file and check if it contains errors before you choose it to recover IIS. You could find these backup files in C:\inetpub\history. The sub folder names are the same as the backup names.