Which command should you run first?

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?

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?

A.

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



Leave a Reply 3

Your email address will not be published. Required fields are marked *

8 + 8 =


Jony

Jony

missing picture
A.
dism.exe /c:/Server12.wim /enable-feature /featurename:servermigration

Answer is correct

AJ

AJ

It says you need enable the feature in the R2 Datacenter image (index 4).
The first command should relate to mounting the WIM file else you cannot make any changes to it. B is correct.

Brandon

Brandon

Must mount image before you can make modifications to it.

Answer is correct.