PowerShell Logo Small

Set-ADResourcePropertyList



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

Modifies a resource property list in Active Directory.

SYNTAX


Set-ADResourcePropertyList [-Identity] <ADResourcePropertyList> [-Add <Hashtable>] [-AuthType {Negotiate | Basic}] [-Clear <String[]>] [-Credential <PSCredential>]
[-Description <String>] [-PassThru] [-ProtectedFromAccidentalDeletion <Boolean>] [-Remove <Hashtable>] [-Replace <Hashtable>] [-Server <String>] [-Confirm] [-WhatIf]
[<CommonParameters>]
Set-ADResourcePropertyList [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-PassThru] [-Server <String>] -Instance <ADResourcePropertyList> [-Confirm]
[-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-ADResourcePropertyList cmdlet can be used to modify a resource property list in Active Directory.



<

RELATED LINKS


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

REMARKS

<

Examples


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

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



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




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

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



This command gets the resource property list named Corporate Resource Property List and then sets its description to For corporate documents.