Steps to know the Backup/Restore in IIS 7 Configuration

kumkumsharma

Administrator
Staff member
You can run below command to backup IIS configuration:

Code:
%windir%\system32\inetsrv\appcmd.exe add backup "Backup-Name"
If you want to restore IIS configuration file backup then you can run below command:

Code:
%windir%\system32\inetsrv\appcmd.exe restore backup "Backup-Name"
You can check all the list of backups and history files with below command:

Code:
%windir%\system32\inetsrv\appcmd.exe list backup
 
Top