You work as a Network Administrator at AIOTestking.com. AIOTestking.com has an Active Directory
Domain Services (AD DS) domain named AIOTestking.com. All servers in the AIOTestking.com domain
have Microsoft Windows Server 2012 R2 installed.
A technician has created a vhd file containing a Windows Server 2012 R2 installation image. The
vhd image is offline. You must use DISM to apply updates to the vhd image. You need to mount
the vhd image.
Which of the following actions should you take?
A.
You should run the DISM utility with the /Get-MountedWinInfo parameter.
B.
You should use Diskpart.exe.
C.
You run the DISM utility with the /Mount-wim parameter.
D.
You should run the DISM utility with the /Append-Image parameter.
E.
You should run the DISM utility with the /Apply-Image parameter.
it should be C, DISM utility works on windows server 2012
if it was windows server 2008 you would need to use diskpart
https://technet.microsoft.com/en-us/library/hh824814.aspx
The correct option should be B, Diskpart.exe.
The article mentioned by “Saad” refers to “/mount-image”, which is NOT an option here.
“/Mount-image” can mount vhd files.
“/Mount-wim” CANNOT mount vhd files (only wim).
Source:
http://superuser.com/questions/1001094/dism-option-difference-mount-image-vs-mount-wim
saad is right please read all commands in dism you will get the answer/
btw diskpart.exe is for managing disk partitions.
please read think link:
https://technet.microsoft.com/en-us/library/cc766465(v=ws.10).aspx
none of the answers are correct here in that case actual one is mount-image
Mounting a VHD file from the command line
Open a command prompt as a local administrator and run the following commands, replacing “c:\mydisk.vhd” with the path to your VHD file:
DISKPART
SELECT VDISK FILE=”c:\mydisk.vhd”
ATTACH VDISK
To dismount the VHD type:
DETACH VDISK