PowerShell Logo Small

Get-ADFineGrainedPasswordPolicySubject



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

Gets the users and groups to which a fine-grained password policy is applied.

SYNTAX


Get-ADFineGrainedPasswordPolicySubject [-Identity] <ADFineGrainedPasswordPolicy> [-AuthType {Negotiate | Basic}] [-Credential <PSCredential>] [-Server <String>]
[<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ADFineGrainedPasswordPolicySubject cmdlet gets users and groups that are subject to a fine-grained password policy.


The Identity parameter specifies the fine-grained password policy. You can identify a fine-grained password policy by its distinguished name, GUID or name. You can also set
the Identity parameter to a fine-grained password policy object variable, such as $<localPasswordPolicyObject>, or pass a fine-grained password policy object through the
pipeline operator to the Identity parameter. For example, you can use the Get-ADFineGrainedPasswordPolicy cmdlet to retrieve a fine-grained password policy object and then
pass the object through the pipeline operator to the Get-ADFineGrainedPasswordPolicySubject cmdlet.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/p/?linkid=291030
Get-ADFineGrainedPasswordPolicy

REMARKS

<

Examples


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

PS C:\>Get-ADFineGrainedPasswordPolicySubject -Identity DomainUsersPSO | FT Name,ObjectClass,DistinguishedName -AutoSize
Name ObjectClass DistinguishedName
---- ----------- -----------------
Domain Users group CN=Domain Users,CN=Users,DC=FABRIKAM,DC=COM



This command gets the Fine Grained Password Policy subject of the Password Policy named DomainUsersPSO.