You need to identify the permissions of the mounted images in Install.wim

You have Windows Server 2012 R2 installation media that contains a file named Install.wim. You
need to identify the permissions of the mounted images in Install.wim.
What should you do?

You have Windows Server 2012 R2 installation media that contains a file named Install.wim. You
need to identify the permissions of the mounted images in Install.wim.
What should you do?

A.
Run dism.exe and specify the /get-mountedwiminfo parameter.

B.
Run imagex.exe and specify the /verify parameter.

C.
Run imagex.exe and specify the /ref parameter.

D.
Run dism.exe and specify the/get-imageinfo parameter.

Explanation:
/Get-MountedWimInfo Lists the images that are currently mounted and information about the
mounted image such as read/write permissions, mount location, mounted file path, and mounted
image index.
References:
httpHYPERLINK “http://technet.microsoft.com/en-us/library/cc749447(v=ws.10).aspx#_blank”:
//technetHYPERLINK “http://technet.microsoft.com/en-us/library/cc749447(v=ws.10).aspx#_blank”.
microsoftHYPERLINK “http://technet.microsoft.com/en-us/library/cc749447(v=ws.10).aspx#_blank”.
com/en-us/library/cc749447(v=wsHYPERLINK “http://technet.microsoft.com/enus/library/cc749447(v=ws.10).aspx#_blank”. 10)HYPERLINK “http://technet.microsoft.com/enus/library/cc749447(v=ws.10).aspx#_blank”. aspx
httpHYPERLINK “http://technet.microsoft.com/en-us/library/dd744382(v=ws.10).aspx#_blank”:
//technetHYPERLINK “http://technet.microsoft.com/enus/library/dd744382(v=ws.10).aspx#_blank”. microsoftHYPERLINK
“http://technet.microsoft.com/en-us/library/dd744382(v=ws.10).aspx#_blank”. com/en-HYPERLINK
“http://technet.microsoft.com/enus/library/dd744382(v=ws.10).aspx#_blank”us/library/dd744382(v=wsHYPERLINK
“http://technet.microsoft.com/en-us/library/dd744382(v=ws.10).aspx#_blank”. 10)HYPERLINK
“http://technet.microsoft.com/en-us/library/dd744382(v=ws.10).aspx#_blank”. aspx
httpHYPERLINK “http://technet.microsoft.com/en-us/library/hh825224.aspx#_blank”:
//technetHYPERLINK “http://technet.microsoft.com/en-us/library/hh825224.aspx#_blank”.
microsoftHYPERLINK “http://technet.microsoft.com/en-us/library/hh825224.aspx#_blank”. com/enus/library/hh825224HYPERLINK “http://technet.microsoft.com/enus/library/hh825224.aspx#_blank”. aspx



Leave a Reply 6

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

one × 4 =


Darkstar

Darkstar

Answer is D
Option: /Get-ImageInfo

Arguments:

/ImageFile:

[{/Index: | /Name:}]

Displays information about the images that are contained in the .wim, .vhd or .vhdx file. When used

with the /Index or /Name argument, information about the specified image is displayed. The /Name

argument does not apply to VHD files.

You must specify /Index:1 for VHD files.

Example:

Dism /Get-ImageInfo /ImageFile:C:\test\offline\install.wim

Dism /Get-ImageInfo /ImageFile:C:\test\images\myimage.vhd /Index:1

http://technet.microsoft.com/en-us/library/hh825224.aspx

http://technet.microsoft.com/en-us/library/hh825258.aspx

SD

SD

The key word in the question is “Mounted” this makes A the correct answer.

Robert

Robert

Answer is A. Question is asking the permissions for the image, not what’s inside the image.

Option: /Get-MountedImageInfo
Lists the images that are currently mounted and information about the mounted image such as whether the image is valid, read/write permissions, mount location, mounted file path, and mounted image index.

Option: /Get-ImageInfo
Arguments: /ImageFile: [{/Index: | /Name: }]
Displays information about the images that are contained in the .wim, vhd or .vhdx file. When used with the /Index or /Name argument, information about the specified image is displayed, which includes if an image is a WIMBoot image, if the image is Windows 8.1 Update, see Take Inventory of an Image or Component Using DISM. The /Name argument does not apply to VHD files. You must specify /Index:1 for VHD files.

BenSolo

BenSolo

Answer is: A

/Get-MountedImageInfo
Applies To: Windows 8, Windows 8.1, Windows Server 2012, Windows Server 2012 R2
https://technet.microsoft.com/en-us/library/hh825079.aspx

Right answer:
PS C:\Windows\system32> dism /Get-MountedWimInfo

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Mounted images:
Mount Dir : c:\mount
Image File : D:\sources\install.wim
Image Index : 1
Mounted Read/Write : No
Status : Ok

Wrong answer:
PS C:\> Dism /Get-ImageInfo /ImageFile:d:\sources\install.wim

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Details for image : d:\sources\install.wim

Index : 1
Name : Windows Server 2012 R2 SERVERSTANDARDCORE
Description : Windows Server 2012 R2 SERVERSTANDARDCORE
Size : 7,460,086,466 bytes

PS C:\> Dism /Get-ImageInfo /ImageFile:d:\sources\install.wim /index:1

Deployment Image Servicing and Management tool
Version: 6.3.9600.17031

Details for image : d:\sources\install.wim

Index : 1
Name : Windows Server 2012 R2 SERVERSTANDARDCORE
Description : Windows Server 2012 R2 SERVERSTANDARDCORE
Size : 7,460,086,466 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 6.3.9600
ServicePack Build : 17415
ServicePack Level : 0
Edition : ServerStandard
Installation : Server Core
ProductType : ServerNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 16084
Files : 88788
Created : 11/22/2014 – 9:13:31 AM
Modified : 11/22/2014 – 9:13:57 AM
Languages :
en-US (Default)

The operation completed successfully.