PowerShell Logo Small

Remove-WebConfigurationBackup



This is the built-in help made by Microsoft for the command 'Remove-WebConfigurationBackup', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Removes an existing IIS configuration backup.

SYNTAX


Remove-WebConfigurationBackup [[-Name] <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Removes an IIS configuration backup that was created by using theT:Microsoft.IIs.PowerShell.Provider.Backup-WebConfigurationcmdlet.



<

RELATED LINKS


Online Version: http://go.microsoft.com/fwlink/p/?linkid=287884

REMARKS

<

Examples


-------------- EXAMPLE 1: Adding and removing an IIS configuration backup --------------

IIS:\>Backup-WebConfiguration MyNewBackup Get-WebConfigurationBackup MyNewBackup sleep 5 Remove-WebConfigurationBackup MyNewBackup



The example creates a configuration backup, lists the backup created, sleeps for 5 seconds, and then removes the backup.