Comment on page
Join-CSObject
Joins a connector space object to a metaverse object
Join-CSObject [-MVObjectType] <String> [-MVObjectID] <Guid> [-CSObject] <CSObject> [<CommonParameters>]
Join-CSObject [-MVObject] <MVObject> [-CSObject] <CSObject> [<CommonParameters>]
The Join-CSObject cmdlet allows you to join a connector space object to an existing metaverse object.
The object type of the metaverse object specified by the MVObjectID parameter
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The ID of the metaverse object to join
Required? | true |
Position? | 2 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The connector space object to join
Required? | true |
Position? | 3 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
The metaverse object to join
Required? | true |
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:\> $cs = Get-CSObject -RDN "cn=John Smith" -MA ACMA
$mv = Get-MVObject -ObjectType user -Attribute accountName -Value jsmith
Join-CSObject -CSObject $cs -MVObject $mv
Last modified 1yr ago