NAME
Disconnect-IscsiTarget
SYNOPSIS
Disconnects sessions to the specified iSCSI target object.SYNTAX
Disconnect-IscsiTarget [-CimSession
] [-NodeAddress ] [-PassThru] [-SessionIdentifier
] [-ThrottleLimit ] [-Confirm] [-WhatIf] [ ] Disconnect-IscsiTarget [-CimSession
] [-PassThru] [-SessionIdentifier ] [-ThrottleLimit
] [-Confirm] [-WhatIf] [ ] DESCRIPTION
The Disconnect-IscsiTarget cmdlet disconnects a connected iSCSI target. To view connected iSCSI targets, use the
Get-IscsiTarget cmdlet.
PARAMETERS
-CimSession [
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such] as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local
computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-NodeAddress [
Specifies the IQN of the discovered target. Required? false Position? named Default value none] Accept pipeline input? True (ByPropertyName)
Accept wildcard characters? false-PassThru [
Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -SessionIdentifier [
Specifies the session identifier. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -ThrottleLimit [
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShellr calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -Confirm [
Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet. Required? false Position? named Default value false Accept pipeline input? false Accept wildcard characters? false] -WhatIf [
Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run. Required? false Position? named Default value false 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 (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
NoneOUTPUTS
NoneExample 1: Disconnect an iSCSI target
The first command gets iSCSI targets by using the Get-IscsiTarget cmdlet.The second command gets iSCSI targets,
and then stores them in the $Target variable. The final command disconnects the iSCSI target identified by its
NodeAddress.PS C:\> Get-IscsiTarget
IsConnected NodeAddress----------- -----------
True iqn.1991-05.com.contoso:testiscsi-deepcore-target
PS C:\> $Target = Get-IscsiTarget
PS C:\> Disconnect-IscsiTarget -NodeAddress $Target.NodeAddress
Confirm Are you sure you want to perform this action? Performing operation '' on Target ''. [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y This example collects information about a connected iSCSI target, and then using that information to run this cmdlet.RELATED LINKS
iSCSI on TechNet Storage on TechNetGet-IscsiTarget