If you are using Windows Server IIS as your web server software, it is important to make regular backups. Luckily, using appcmd.exe or PowerShell, this is quite easy.
This post shows you how to back up and restore IIS 10 webserver configuration with appcmd.exe and PowerShell.
Creating backups ensures you have valid data to restore when something went wrong. For example, if you deleted a site that shouldn’t be deleted, you can restore the created IIS backup. It particularly comes in handy when you remove orphaned IIS web applications automatic in a PS script.
Did you know IIS automatically creates these backups when you change settings through IIS Manager? You can find them in %SystemDrive%\inetpub\history. This is part of the built-in IIS configuration history feature. Neat, right?! 🙂
Using appcmd.exe list backup you can view the available IIS configuration history feature:
PS C:\inetpub\history> appcmd list backup
BACKUP "CFGHISTORY_0000000104"
BACKUP "CFGHISTORY_0000000105"
BACKUP "CFGHISTORY_0000000106"
BACKUP "CFGHISTORY_0000000107"
BACKUP "CFGHISTORY_0000000108"
BACKUP "CFGHISTORY_0000000109"
BACKUP "CFGHISTORY_0000000110"
BACKUP "CFGHISTORY_0000000111"
BACKUP "CFGHISTORY_0000000112"
BACKUP "CFGHISTORY_0000000113"
BACKUP "CFGHISTORY_0000000114"
The full path to theappcmd.exe executable is C:\Windows\System32\inetsrv\appcmd.exe.
I can create an IIS backup using the add parameter:
PS C:\inetpub\history> appcmd add backup
BACKUP object "20191105T002034" added
and list lists it
PS C:\inetpub\history> appcmd list backup
BACKUP "20191105T002034"
BACKUP "CFGHISTORY_0000000104"
[...]
The backups created by appcmd are saved in the directory C:\Windows\System32\inetsrv\backup\.
If needed, you can restore a backup easily in IIS with appcmd.exe as well:
PS C:\inetpub\history> appcmd restore backup /backup.name:"20191105T002034" /stop:true
Restored configuration from backup "20191105T002034"
The command above restores the backup called “20191105T002034”, and by using /stop:true I forced IIS to stop before performing the restore.
Backup and restore IIS configuration with Powershell
If you want to use PowerShell to create an IIS configuration backup, you can use the Backup-WebConfiguration cmdlet. Backup-WebConfiguration is available in the webadministration module.
The Conditionally start Application Pools on remote IIS web servers post has more information about the PowerShell webadministration module.
An easy to use example is:
PS C:\Users\janreilink> Backup-WebConfiguration -Name MyIISBackup
Name Creation Date
---- -------------
MyIISBackup 12/19/2019 12:00:00 AM
Backups are stored in the C:\Windows\System32\inetsrv\backup directory.
Summary
- Regular backups are essential for IIS on Windows Server, and you can create them easily with appcmd.exe or PowerShell.
- IIS automatically generates backups when settings change, which you can find in %SystemDrive%\inetpub\history.
- To back up and restore IIS configuration, use the appcmd.exe commands or the Backup-WebConfiguration cmdlet in PowerShell.
- Backups are stored in the C:\Windows\System32\inetsrv\backup directory for easy access.
- The article provides informative examples and tips for effectively managing IIS backups.
HTH 🙂