DRAG DROP
You have a server named Server1 that runs Windows Server 2012 R2.
You need to create a new volume on Server1.
The new volume must have the following configurations:
Be stored on a new virtual hard disk
Be assigned the drive letter G
Have the NTFS file system
In which order should you run the Diskpart commands?
To answer, move all the Diskpart commands from the list of commands to the answer area
and arrange them in the correct order.

Answer: See the explanation
Explanation:
Box 1: create vdisk
Box 2: attach vdisk
Box 3: create partition
Box 4: assign
Box 5: formatNote: Example:
createvdisk file=”C:\vdisks\disk1.vhd” maximum=16000
attachvdisk
create partition primary
assign letter=g
format
References:
http://technet.microsoft.com/en-us/library/gg252576.aspx
http://technet.microsoft.com/en-us/library/hh831487.aspx
This is a dupe question was already posted in an earlier one.
0
0
It’s also wrong here too, should be:
1. Create vdisk
2. Attach vdisk
3. Create partition
4. Format
5. Assign letter
see bottom:
https://technet.microsoft.com/en-us/library/gg318052(v=ws.10).aspx
http://www.utilizewindows.com/7/deployment/360-create-virtual-hard-disk-vhd-using-diskpart-in-windows-7
0
0
Actually, I’ve tested it, and you can do it both ways.
0
0
In Server 2012R2, when you use the wizard it assigns the drive letter first, then formats in the final step.
You can do the same in diskpart, but when you assign the drive letter it mounts the volume and then Windows brings up a dialog saying you need to format, which stays there even after you format using diskpart.
So which is the “most correct” answer since both are right? I’m inclined to go with JR as that doesn’t bring up unnecessary dialog boxes.
0
0