• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/22

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

22 Cards in this Set

  • Front
  • Back
Abbrev : VHDs ?
Virtual Hard Disks
What are the different steps in deploying Windows 7 ?
Preparing the master computer
Imaging the master computer
Deploying the image
Migrating user settings and data
The ImageX tool is part of which Toolkit ?
Windows AIK
What does the ImageX tool do ?
ImageX enables you to create and make changes to an image without having to recreate the entire image.

You can also deploy images to the production environment from the command-line interface.
Abbrev : DISM ??
Deployment Image Servicing and Management
How does DISM help ?
Command-line tool that you can apply to service a Windows image or to prepare a Windows Pre-installation Environment, or PE, image.
You can make a Windows image available for servicing by mounting it or by specifying an online Windows installation.
You can make a Windows image available for servicing by mounting it or by specifying an online Windows installation.
When you want to service an offline Windows image, you should first mount it. To mount a Windows image for servicing and management, you can apply WIM commands and arguments.
When you want to service an offline Windows image, you should first mount it. To mount a Windows image for servicing and management, you can apply WIM commands and arguments.
Identify the two factors that determine which commands and options you should use when you service an image.

Options:

1. A verification of the architecture for the image
2. Whether the image is offline or online
3. A list of the indexes for the image
4. The Windows operating system that you use
Correct answer(s):

2. Whether the image is offline or online
4. The Windows operating system that you use
The /Mount-Wim option enables you to make a WIM image available for servicing by mounting it to a specified directory
The /Mount-Wim option enables you to make a WIM image available for servicing by mounting it to a specified directory
Dism /Mount-Wim /WimFile:[path_to_image.wim] /Index:[image_index]
/Name:[image_name] /MountDir:[path_to_mount_directory]
/ReadOnly
example : Dism /Mount-Wim /WimFile:C:\test\images\install.wim /index:1 /MountDir:C:\test\offline /ReadOnly
You use the /Commit-Wim option to apply the changes you made to the mounted image.

Dism /Commit-Wim /MountDir:[path_to_mount_directory]
Example :
Dism /Commit-Wim /MountDir:[path_to_mount_directory]
You use the /Commit-Wim option to apply the changes you made to the mounted image.

Dism /Commit-Wim /MountDir:[path_to_mount_directory]
Example :
Dism /Commit-Wim /MountDir:[path_to_mount_directory]
When you want to unmount the WIM file, you use the /Unmount-Wim option. You can then either commit or discard the changes you made to the image.

Dism /Unmount-Wim /MountDir:[path_to_mount_directory] /Commit /Discard

Dism /Unmount-Wim /MountDir:C:\test\offline /commit
When you want to unmount the WIM file, you use the /Unmount-Wim option. You can then either commit or discard the changes you made to the image.

Dism /Unmount-Wim /MountDir:[path_to_mount_directory] /Commit /Discard

Dism /Unmount-Wim /MountDir:C:\test\offline /commit
The /Cleanup-Wim option enables you to delete the resources associated with a mounted WIM image when you cancel its servicing.

Dism /Cleanup-Wim
The /Cleanup-Wim option enables you to delete the resources associated with a mounted WIM image when you cancel its servicing.

Dism /Cleanup-Wim
Suppose you decide to cancel servicing a Windows image. Which servicing command do you apply to delete the resources associated with the mounted image?

Options:

1. /Unmount-Wim
2. /Commit-Wim
3. /Cleanup-Wim
4. /ReadOnly
3. /Cleanup-Wim
To apply an unattended file to an image, you can use the /Apply-Unattend command.
To apply an unattended file to an image, you can use the /Apply-Unattend command.
Once you've mounted an image there are several ways in which you can service it. You can use Windows edition servicing commands, driver servicing commands, international servicing commands, application servicing commands, or packaging servicing commands.
Once you've mounted an image there are several ways in which you can service it. You can use Windows edition servicing commands, driver servicing commands, international servicing commands, application servicing commands, or packaging servicing commands.
Windows edition servicing commands :
/Set-ProductKey
/Get-TargetEditions
/Get-CurrentEdition
/Set-Edition
driver servicing commands
/Remove-Driver
/Add-Driver
/Get-DriverInfo
/Get-Drivers
international servicing commands
/Set-LayeredDriver
/Set-UserLocale
/Set-TimeZone
/Set-SKUIntlDefaults
application servicing commands
/Check-AppPatch
/Get-AppPatchInfo
/Get-AppPatches
/Get-AppInfo
/Get-Apps
packaging servicing commands
# /Add-Package – adds packages to the image

# /Remove-Package – removes packages from the image

# /Enable-Feature command – enables a specific feature in the image, and

# /Disable-Feature – disables a specific feature in the image

# /Get-Packages – displays information about all the packages in the image

# /Get-PackageInfo – provides information about a specific package in the image

# /Get-Feature – provides information on all the features in the package

# /Get-FeatureInfo – displays information about a specific feature, and

# /Cleanup-Image – performs cleanup and recovery operations on the image