Disconnect-CSObject
Synopsis
Disconnects a connector space object from the metaverse
Syntax
Disconnect-CSObject [-CSObject] <CSObject> [[-Explicit] <SwitchParameter>] [<CommonParameters>]
Description
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.
Parameters
-CSObject <CSObject>
The connector space object to disconnect
Required?
true
Position?
1
Default value
Accept pipeline input?
true
Accept wildcard characters?
false
-Explicit <SwitchParameter>
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
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
Examples
Disconnect a connector space object using the pipeline
PS C:\> Get-CSObject -RDN "CN=John Smith" -MA "ADMA" | Disconnect-CSObject
Disconnect a connector space object
PS C:\> $cs = Get-CSObject -RDN "CN=John Smith" -MA "ADMA"
Disconnect-CSObject -CSObject $cs
Explicitly disconnect a connector space object
PS C:\> $cs = Get-CSObject -RDN "CN=John Smith" -MA "ADMA"
Disconnect-CSObject -CSObject $cs -Explicit
Last updated