PowerShell Logo Small

New-ADResourcePropertyList



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

Creates a new resource property list in Active Directory.

SYNTAX


New-ADResourcePropertyList [-Name] <String> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Description <String>] [-Instance <ADResourcePropertyList>]
[-PassThru] [-ProtectedFromAccidentalDeletion <Boolean>] [-Server <String>] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The New-ADResourcePropertyList cmdlet creates a resource property list in Active Directory.



<

RELATED LINKS


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

REMARKS

<

Examples


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

PS C:\>New-ADResourcePropertyList -Name "Corporate Resource Property List"



This command creates a new resource property list named Corporate Resource Property List.




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

PS C:\>New-ADResourcePropertyList -Name "Corporate Resource Property List" -Description "For corporate documents."



This command creates a new resource property list named Corporate Resource Property List with the description For corporate documents.




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

PS C:\>Get-ADResourcePropertyList -Identity "Corporate Resource Property List" | New-ADResourcePropertyList -Name "Finance Resource Property List"



This command creates a new resource property list using the property values from a Corporate Resource Property List.