HOTSPOT
You have a server that runs Windows Server 2012 R2 and has the iSCSI Target Server role service
installed.
You run the New-IscsiVirtualDisk cmdlet as shown in the New-IscsiVirtualDisk exhibit. (Click the
Exhibit button.)
To answer, complete each statement according to the information presented in the exhibits. Each
correct selection is worth one point.

Explanation:
* From the exhibit we see that the size is 10737418240 bytes. This is roughly 10 GB.
* From the exhibit we also see ‘Status: Not connected’.
Note: Target: It is an object which allows the iSCSI initiator to make a connection. The Target keeps
track of the initiators which are allowed to be connected to it. The Target also keeps track of theiSCSI virtual disks which are associated with it. Once the initiator establishes the connection to the
Target, all the iSCSI virtual disks associated with the Target will be accessible by the initiator.Introduction of iSCSI Target in Windows Server 2012
http://blogs.technet.com/b/filecab/archive/2012/05/21/introduction-of-iscsi-target-in-windowsserver-2012.aspx
Clearly Disk2.vhdx has only just been created (and it is Dynamically expanding) so it is at it’s initial size of 4MB still – therefore it is only taking up 4MB of space on the host disk.
0
0
I agree with you. Should be 4MB and not 10GB.
0
0
Agree
0
0
Agree
I ran the following command on my lab and the disk size was 4,096 KB
PS C:\> New-IscsiVirtualDisk -path C:\iSCSIVirtualDisks\disk2.vhdx -SizeBytes 10GB
-ComputerName william.home.trembath.com
ClusterGroupName :
ComputerName : WILLIAM.home.trembath.com
Description :
DiskType : Dynamic
HostVolumeId : {F62C3606-05A1-11E6-80B4-806E6F6E6963}
LocalMountDeviceId :
OriginalPath :
ParentPath :
Path : C:\iSCSIVirtualDisks\disk2.vhdx
SerialNumber : 722119BE-FFED-4F6C-8ACB-5AF653669CE1
Size : 10737418240
SnapshotIds :
Status : NotConnected
VirtualDiskIndex : 1587202324
to FIX you must declare the -UseFixed option, which is not present within the power shell command.
PS C:\> New-IscsiVirtualDisk -path C:\iSCSIVirtualDisks\disk3.vhdx -SizeBytes (10GB)
-UseFixed
ClusterGroupName :
ComputerName : WILLIAM.home.trembath.com
Description :
DiskType : Fixed
HostVolumeId : {F62C3606-05A1-11E6-80B4-806E6F6E6963}
LocalMountDeviceId :
OriginalPath :
ParentPath :
Path : C:\iSCSIVirtualDisks\disk3.vhdx
SerialNumber : AEF2335E-A6DC-40D4-89A0-A0461AD9578E
Size : 10737418240
SnapshotIds :
Status : NotConnected
VirtualDiskIndex : 1190297703
0
0