PowerShell Logo Small

Add-ADResourcePropertyListMember



This is the built-in help made by Microsoft for the command 'Add-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

Adds one or more resource properties to a resource property list in Active Directory.

SYNTAX


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



Search powershellhelp.space

DESCRIPTION


The Add-ADResourcePropertyListMember cmdlet adds one or more resource properties to a resource property list in Active Directory.



<

RELATED LINKS


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

REMARKS

<

Examples


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

PS C:\>Add-ADResourcePropertyListMember -Identity "Global Resource Property List" -Members Country,Authors



This command adds the resource properties named Country and Authors to the global resource property list.




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

PS C:\>Add-ADResourcePropertyListMember
cmdlet Add-ADResourcePropertyListMember at command pipeline position 1
Supply values for the following parameters:
Identity: Corporate Resource Property List
Members[0]: Country
Members[1]: Authors
Members[2]:



This command demonstrates default behavior for this cmdlet, no parameters specified. Adds the resource properties named Country and Authors to the resource property list
named Corporate Resource Property List.




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

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



This command gets any resource property list that has a name that begins with Corporate and then pipes it to Add-ADResourcePropertyListMember, which then adds the resource
properties with the name Country and Authors to it.