PowerShell Logo Small

Remove-WebConfigurationLock



This is the built-in help made by Microsoft for the command 'Remove-WebConfigurationLock', 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 a lock on configuration settings.

SYNTAX


Remove-WebConfigurationLock [-Filter] <String[]> [[-PSPath] <String[]>] [-Force] [-Location <String[]>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


Removes a lock on configuration settings created that was created by using the Add-WebConfigurationLock cmdlet.



<

RELATED LINKS


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

REMARKS

<

Examples


-------------- EXAMPLE 1: Add and remove configuration locks --------------

IIS:\>Add-WebConfigurationLock -Type general -Filter //asp Remove-WebConfigurationLock -Filter //asp Add-WebConfigurationLock -Type inclusive -Filter //asp/@lcid
Remove-WebConfigurationLock -Filter //asp/@lcid Add-WebConfigurationLock -Type exclusive -Filter //asp/@lcid



This example demonstrates how to add and remove configuration locks.