Remove-IISConfig Element

Removes a specified configuration element.

Syntax

Remove-IISConfigElement
      [-ConfigElement] <ConfigurationElement>
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

The Remove-IISConfigElement cmdlet deletes a specified configuration element. This affectively causes that configuration element to inherit from the parents, if any, or use the default value as described in the schema. If the configuration element that is being removed is a collection element, it is removed from the collection, in which case the functionality is equivalent to Remove-IISConfigCollectionElement.

Examples

Example 1: Remove a configuration element from an IIS website

PS C:\> Get-IISConfigSection "system.webServer/defaultDocument" -CommitPath "Default Web Site" | Remove-IISConfigElement

This command removes a configuration section from a web configuration contained in IIS website Default Web Site.

Required Parameters

-ConfigElement

Specifies the Internet Information Services (IIS) ConfigurationSection or ConfigurationElement to be deleted.

Type: ConfigurationElement
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

Optional Parameters

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Aliases: cf
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Aliases: wi
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

Inputs

Microsoft.Web.Administration.ConfigurationElement