PowerShell Logo Small

Get-ADResourcePropertyValueType



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

Retrieves a resource property value type from Active Directory.

SYNTAX


Get-ADResourcePropertyValueType [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>] -Filter <String> [<CommonParameters>]
Get-ADResourcePropertyValueType [-Identity] <ADResourcePropertyValueType> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server
<String>] [<CommonParameters>]
Get-ADResourcePropertyValueType [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>] -LDAPFilter <String>
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADResourcePropertyValueType cmdlet retrieves a resource property value type from Active Directory. The resource property value type supports the following Active
Directory primitives (ValueType, IsSingleValued, RestrictValues) and a Boolean indicating whether SuggestedValues are allowed.



<

RELATED LINKS


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

REMARKS

<

Examples


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

PS C:\>Get-ADResourcePropertyValueType -Filter * | Format-Table Name



This command retrieves the names of all resource property value types.




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

PS C:\>Get-ADResourcePropertyValueType -Filter {ResourceProperties -eq 'Country' -or ResourceProperties -eq 'Authors'}



This command retrieves all resource property value types that the resource properties Country and Authors use.




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

PS C:\>Get-ADResourcePropertyValueType -Identity "MS-DS-Text"



This command retrieves a resource property value type named MS-DS-Text.