PowerShell Logo Small

Remove-ADResourcePropertyListMember



This is the built-in help made by Microsoft for the command 'Remove-ADResourcePropertyListMember', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 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 <ADAuthType>]
[-Credential <PSCredential>] [-PassThru [<SwitchParameter>]] [-Server <String>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]
[<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/?LinkId=216399

REMARKS

<

Examples


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

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



Description

-----------

Removes the resource property specified as a list member ("Country") from the specified resource property list ("Global Resource Property
List").




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

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



Description

-----------

Removes the resource properties named 'Department' and 'Country' from the resource property list ("Corporate Resource Property List").




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

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



Description

-----------

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.