Comment on page
Get-CSObject
Gets one or more connector space objects
Get-CSObject [-ID] <Guid> [-MA] <string> [<CommonParameters>]
Get-CSObject [-DN] <String> [[-IncludeSubTree] <SwitchParameter>] [-MA] <Object> [<CommonParameters>]
Get-CSObject [-Rdn] <String> [-MA] <string> [<CommonParameters>]
The Get-CSObject cmdlet allows you to get one or more connector space objects using the connector space object's ID, its DN, or RDN
The management agent to get the connector space object from
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The connector space object ID
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The distinguished name of the connector space object
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The relative distinguished name of the connector space object
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
Specifies that all objects contained below the specified DN should be returned
Required? | false |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about CommonParameters.
PS C:\> Get-CSObject -ID 82BFCE95-0DE6-4537-85B0-6DFD360313A1 -MA ADMA
PS C:\> Get-CSObject -DN "CN=John Smith, OU=Sales, DC=contoso, DC=local" -MA ADMA
PS C:\> Get-CSObject -DN "OU=Sales, DC=contoso, DC=local" -IncludeSubTree -MA ADMA
PS C:\> Get-CSObject -RDN "CN=John Smith" -MA ADMA
Last modified 1yr ago