PowerShell Logo Small

Get-ADResourcePropertyValueType



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

Retrieves a resource property value type from Active Directory.

SYNTAX


Get-ADResourcePropertyValueType [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Properties <String[]>] [-Server <String>] -Filter
<String> [<CommonParameters>]
Get-ADResourcePropertyValueType [-Identity] <ADResourcePropertyValueType> [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-Properties
<String[]>] [-Server <String>] [<CommonParameters>]
Get-ADResourcePropertyValueType [-AuthType <ADAuthType>] [-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/?LinkId=216364

REMARKS

<

Examples


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

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



Description

-----------

Retrieves the names of all resource property value types.




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

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



Description

-----------

Retrieves all resource property value types that the resource properties "Country" and "Authors" use.




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

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



Description

-----------

Retrieves a resource property value type named "MS-DS-Text".