Comment on page
Disconnect-CSObject
Disconnects a connector space object from the metaverse
Disconnect-CSObject [-CSObject] <CSObject> [[-Explicit] <SwitchParameter>] [<CommonParameters>]
The Disconnect-CSObject cmdlet allows you to disconnect a specified connector space object from the connector space. If disconnecting the connector space object will result in the metaverse object being deleted, the cmdlet will prompt for confirmation before proceeding.
The connector space object to disconnect
Required? | true |
Position? | 1 |
Default value | |
Accept pipeline input? | true |
Accept wildcard characters? | false |
Specifies if the connector should be made an explicit disconnector. By default, a normal disconnector is made
Required? | false |
Position? | 2 |
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 -RDN "CN=John Smith" -MA "ADMA" | Disconnect-CSObject
PS C:\> $cs = Get-CSObject -RDN "CN=John Smith" -MA "ADMA"
Disconnect-CSObject -CSObject $cs
PS C:\> $cs = Get-CSObject -RDN "CN=John Smith" -MA "ADMA"
Disconnect-CSObject -CSObject $cs -Explicit
Last modified 1yr ago