Your network contains a Windows Server 2012 R2 image named
Server12.wim.Server12.wim contains the images shown in the following table.
You need to enable the Windows Server Migration Tools feature in the Windows Server
2012 R2 Datacenter image.
You want to achieve this goal by using the minimum amount of administrative effort.
Which command should you run first?
B.
dism.exe /mount-wim /wimfile:c:\Server12.wim /index:4 /mountdir:c:\mount
C.
imagex.exe /capture c: c:\Server12.wim “windows server 2012 r2 datacenter”
D.
imagex.exe /apply c:\Server12.wim 4 c:\
Explanation:
This command will mount the image before making any changes.
References:
http://technet.microsoft.com/en-us/library/cc749447(v=ws.10).aspx
http://technet.microsoft.com/en-us/library/dd744382(v=ws.10).aspx
Option A should be: dism.exe /image:c:\Server12.wim /enable-feature /featurename:servermigration
But then we wouldn’t need to mount the WIM file !
I think option A would be rather:
dism.exe /image:c:\Server12\ /enable-feature /featurename:servermigration
/image : Specifies the path to the root directory of an offline Windows image.
https://technet.microsoft.com/en-us/library/hh824822.aspx#BKMK_enable