Join-CSObject

Synopsis

Joins a connector space object to a metaverse object

Syntax

Join-CSObject [-MVObjectType] <String> [-MVObjectID] <Guid> [-CSObject] <CSObject> [<CommonParameters>]

Join-CSObject [-MVObject] <MVObject> [-CSObject] <CSObject> [<CommonParameters>]

Description

The Join-CSObject cmdlet allows you to join a connector space object to an existing metaverse object.

Parameters

-MVObjectType <String>

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

-MVObjectID <Guid>

The ID of the metaverse object to join

Required?

true

Position?

2

Default value

Accept pipeline input?

false

Accept wildcard characters?

false

-CSObject <CSObject>

The connector space object to join

Required?

true

Position?

3

Default value

Accept pipeline input?

false

Accept wildcard characters?

false

-MVObject <MVObject>

The metaverse object to join

Required?

true

Position?

1

Default value

Accept pipeline input?

false

Accept wildcard characters?

false

<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about CommonParameters.

Examples

Join a connector space object

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 updated