Get-IscsiVirtualDisk

Obtains the iSCSI virtual disks and their associated properties.

Syntax

Get-IscsiVirtualDisk
   [-ClusterGroupName <String>]
   [[-Path] <String>]
   [-ComputerName <String>]
   [-Credential <PSCredential>]
   [<CommonParameters>]
Get-IscsiVirtualDisk
   [-ClusterGroupName <String>]
   [-TargetName <String>]
   [-ComputerName <String>]
   [-Credential <PSCredential>]
   [<CommonParameters>]
Get-IscsiVirtualDisk
   [-ClusterGroupName <String>]
   [-InitiatorId <InitiatorId>]
   [-ComputerName <String>]
   [-Credential <PSCredential>]
   [<CommonParameters>]

Description

The Get-IscsiVirtualDisk cmdlet obtains the iSCSI virtual disks and their associated properties.

Examples

EXAMPLE 1

PS C:\> Get-IscsiVirtualDisk

This example gets all of the virtual disks on the local server.

EXAMPLE 2

PS C:\> Get-IscsiVirtualDisk -Path "E:\temp\test.vhd"

This example gets the virtual disk object with the path E:\temp\test.vhd on the local server.

EXAMPLE 3

PS C:\> Get-IscsiVirtualDisk -Path "E:\temp\test.vhd" -ComputerName "fscluster.contoso.com" -ClusterGroupName "target1Group"

This example gets the Virtual Disk object with the path E:\temp\test.vhd in the resource group named target1Group on cluster server named fscluster.contoso.com.

EXAMPLE 4

PS C:\> Get-IscsiVirtualDisk -TargetName "TargetOne"

This example gets all of the virtual disks that are associated with the target named TargetOne on the local server.

EXAMPLE 5

PS C:\> Get-IscsiVirtualDisk -InitiatorId "IpAddress:10.10.1.1"

This example gets all of the virtual disks on the local server that are used by the initiator with IP address 10.10.1.1.

Parameters

-ClusterGroupName

Specifies the name of the resource group or network within the resource group on which this cmdlet should be run.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-ComputerName

Specifies the computer name, or IP address, of the remote computer, if this cmdlet is run on a remote computer.

Specifies the cluster resource group network name, or cluster node name, if this cmdlet is run on a cluster configuration.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Credential

Specifies the credentials when connecting to a remote computer.

Type:PSCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-InitiatorId

Specifies the iSCSI initiator identifiers (IDs) to which the iSCSI target is assigned.

Use this parameter to filter out the iSCSI Virtual Disk object that can be accessed by the given iSCSI initiator.

The format for this parameter is IdType:Value. The acceptable values for this parameter are: DNSName, IPAddress, IPv6Address, IQN, or MACAddress.

Type:InitiatorId
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Path

Specifies the path of the virtual hard disk (VHD) file that is associated with the iSCSI virtual disk.

Filter the iSCSI Virtual Disk object using this parameter.

Type:String
Aliases:DevicePath
Position:0
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-TargetName

Specifies the name of the iSCSI target.

Use this parameter to filter out the iSCSI Virtual Disk object that are assigned to the specified iSCSI target.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

Inputs

None

Outputs

Microsoft.Iscsi.Target.Commands.IscsiVirtualDisk