IIS7 - Backup Restore UI Module
You might see that there is no UI way to take backup, restore backup. Only available way (till Windows 2008 Server RC0) is by the AppCmd tool. Below are the commands to do that:
appcmd add backup "backupname"
appcmd restore backup "backupname"
For those who wanted to have an UI way for this, here is my new IIS7 UI Module. Below is how it looks:
In the available Backups drop combobox, you will find all the available backups. Select the one which you want to restore and click "Restore" button. It would look like below:
Here is the link for the DLL:
To add this module in your IIS 7 manager follow the below steps:
<add name="IIS7BackupRestoreUI" type="IIS7BackupRestoreUI.MyModuleProvider, IIS7BackupRestoreUI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=db9daa3d2ea5f6fd" />
<add name="IIS7BackupRestoreUI" />
Let me know if this helps you!
UPDATE : This now available in IIS.net/downloads. Here is the link.