PowerShell Logo Small

Add-ADResourcePropertyListMember



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

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

SYNTAX


Add-ADResourcePropertyListMember [-Identity] <ADResourcePropertyList> [-Members] <ADResourceProperty[]> [-AuthType <ADAuthType>] [-Credential
<PSCredential>] [-PassThru [<SwitchParameter>]] [-Server <String>] [-Confirm [<SwitchParameter>]] [-WhatIf [<SwitchParameter>]]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


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



<

RELATED LINKS


Online Version: http://go.microsoft.com/fwlink/?LinkId=216341

REMARKS

<

Examples


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

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



Description

-----------

Adds the resource properties named "Country" and "Authors" to the global resource property list.




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

C:\PS>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]:



Description

-----------

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 --------------------------

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



Description

-----------

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.