Search Results for

    Show / Hide Table of Contents

    Remove-AdmPwdPdsManagedAccountsContainer

    SYNOPSIS

    Removes configuration of AD container with accounts with automatically managed passwords from configuration of PDS.

    SYNTAX

    Pds

    Remove-AdmPwdPdsManagedAccountsContainer [-Pds] <PdsEndpoint> [-DistinguishedName] <String> [<CommonParameters>]
    

    PdsName

    Remove-AdmPwdPdsManagedAccountsContainer [-PdsName] <String> [-DistinguishedName] <String> [<CommonParameters>]
    

    DESCRIPTION

    PDS manages managed domain accounts in specified AD containers (typically OUs).
    Each container has specific configuration for passwords (complexity, age, encryption key, etc.).
    All user accounts in container are subject of automatic password configuration.
    Configuration of managed accounts containers is stored in PDS configuration file. This command removes matching entry from configuration.

    EXAMPLES

    Example 1

    Get-AdmPwdPds | Remove-AdmPwdPdsManagedAccountsContainer -DistinguishedName:"ou=AdmPwdManagedAccounts,dc=mydomain,dc=com"
    

    Gets list of all PDS instances discovered and removes definition of container for managed accounts.

    Example 2

    Get-AdmPwdPds | ForEach-Object{Remove-AdmPwdPdsManagedAccountsContainer PdsName $_.Host -DistinguishedName "ou=AdmPwdManagedAccounts,dc=mydomain,dc=com"}
    

    Gets list of all PDS instances discovered and removes definition of container for managed accounts.

    PARAMETERS

    -Pds

    Instance of PDS as returned by Get-AdmPwdPds command

    Type: PdsEndpoint
    Parameter Sets: Pds
    Aliases:
    
    Required: True
    Position: 0
    Default value: None
    Accept pipeline input: True (ByValue)
    Accept wildcard characters: False
    

    -PdsName

    Name of instance of PDS - DNS name of machine hosting PDS service

    Type: String
    Parameter Sets: PdsName
    Aliases:
    
    Required: True
    Position: 0
    Default value: None
    Accept pipeline input: True (ByValue)
    Accept wildcard characters: False
    

    -DistinguishedName

    DN of AD container that contains user accounts to be subject of password management by PDS.

    Type: String
    Parameter Sets: (All)
    Aliases:
    
    Required: True
    Position: 1
    Default value: None
    Accept pipeline input: False
    Accept wildcard characters: False
    

    CommonParameters

    This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

    INPUTS

    System.String

    AdmPwd.Types.PdsEndpoint

    OUTPUTS

    NOTES

    Caller has to be member of PDS administrators role. If not member, Access Denied error is returned.

    RELATED LINKS

    • Improve this Doc
    ☀
    ☾
    Back to top Generated by DocFX