PowerShell Logo Small

Remove-ADResourcePropertyListMember



This is the built-in help made by Microsoft for the command 'Remove-ADResourcePropertyListMember', 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 one or more resource properties from a resource property list in Active Directory.

SYNTAX


Remove-ADResourcePropertyListMember [-Identity] <ADResourcePropertyList> [-Members] <ADResourceProperty[]> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>]
[-PassThru] [-Server <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Remove-ADResourcePropertyListMember cmdlet can be used to remove one or more resource properties from a resource property list in Active Directory.



<

RELATED LINKS


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

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

PS C:\>Remove-ADResourcePropertyListMember -Identity "Global Resource Property List" -Members Country



This command removes the resource property specified as a list member, Country, from the specified resource property list, Global Resource Property List.




-------------------------- EXAMPLE 2 --------------------------

PS C:\>Remove-ADResourcePropertyListMember -Identity "Corporate Resource Property List" -Members Department,Country



This command removes the resource properties named Department and Country from the resource property list, Corporate Resource Property List.




-------------------------- EXAMPLE 3 --------------------------

PS C:\>Get-ADResourcePropertyList -Filter { Name -like "Corporate*" } | Remove-ADResourcePropertyListMember -Members Department,Country



This command gets the resource property lists that have a name that begins with Corporate and then pipes it to Remove-ADResourcePropertyListMember, which then removes the
resource properties with the name Department and Country from it.