An operating system deployment boot image is a Windows PE image used during a Configuration Manager 2007 operating system deployment. Configuration Manager 2007 includes default x86 or x64 boot image for use with operating system deployments. Available boot images can be viewed by navigating to System Center Configuration Manager / Site Database / Computer Management / Operating System Deployment / Boot Images in the Configuration Manager console.
Note |
---|
Note these steps must be run on the computer running the SMS provider. The computer account of the computer running the SMS Provider needs Read and Write access to the folder that is the boot image package source. |
You can also import you own custom boot images. You may want custom boot images for any of the following scenarios:
- To run scripts or custom actions in
Windows PE that require optional Windows PE components
that are not enabled in the default Configuration Manager 2007 boot
images.
- To include custom tools and scripts in the
Windows PE image.
- If you are deploying operating systems in a
complex environment you may require multiple boot images containing
different sets of device drivers. Adding device drivers to a boot
image increases the size of the boot image so individual boot
images should not contain all available device drivers.
You can import the newly created boot image into the Configuration Manager 2007 catalog.
Use the following procedure to add a new boot image.
To add a boot image
-
In the Configuration Manager console, navigate System Center Configuration Manager / Site Database / Computer Management / Operating System Deployment / Boot Images.
-
To start the Add Boot Image Wizard, right-click the Boot Images node, and then click Add Boot Image.
-
On the Data Source page, specify the path to the boot image WIM file. You can click Browse to browse for a specific boot image. If the selected WIM file contains multiple images, use the Boot Image drop-down list to select the desired image.
Note The specified path must be a valid network path in the UNC format. For example: \\servername\<sharename>\path. -
On the General page, provide a Name and Version to be associated with the boot image. Optionally, add a descriptive Comment for the boot image, and then click Next.
-
Review the Summary, and then click Next to add the new boot image.
Adding Custom Boot Images
To import a custom boot image, the boot image must already be finalized or the SMS Provider will reject it. Use the following procedure to create a new source boot image that can be imported:
How to Add a Custom Boot Image to Configuration Manager
-
Copy a boot image from the directory where the Windows Automated Installation Kit (WAIK) is installed.
-
Mount this new copied boot image to a temporary directory. For example; imagex.exe /mountrw c:\winpe\winpe.wim 1 %systemroot%\temp\bootimages.
-
Only if using WAIK 1.0, import and install the security .dll optional component. If using WAIK 1.1 or later, ignore this step.
- To prepare an x86 boot image you must perform the following
steps:
- peimg.exe /import=\\<site server>\SMS_<site
code>\OSD\bin\i386\Windows6.0-KB939663-x86.cab
%systemroot%\temp\bootimages\windows
- peimg.exe /install=Package_1_for_KB939663
%systemroot%\temp\bootimages\windows
- peimg.exe /import=\\<site server>\SMS_<site
code>\OSD\bin\i386\Windows6.0-KB939663-x86.cab
%systemroot%\temp\bootimages\windows
- To prepare an X64 image you must perform the following
steps:
- peimg.exe /import=\\<site server>\SMS_<site
code>\OSD\bin\x64\Windows6.0-KB939663-x64.cab
%systemroot%\temp\bootimages\windows
- peimg.exe /install=Package_1_for_KB939663
%systemroot%\temp\bootimages\windows
- peimg.exe /import=\\<site server>\SMS_<site
code>\OSD\bin\x64\Windows6.0-KB939663-x64.cab
%systemroot%\temp\bootimages\windows
- To prepare an x86 boot image you must perform the following
steps:
-
Install the three optional components that are required to perform Configuration Manager 2007 operating system deployments:
- peimg.exe /install=WinPE-Scripting-Package
%systemroot%\temp\bootimages\windows
- peimg.exe /install=WinPE-WMI-Package
%systemroot%\temp\bootimages\windows
- peimg.exe /install=WinPE-XML-Package
%systemroot%\temp\bootimages\windows
- peimg.exe /install=WinPE-Scripting-Package
%systemroot%\temp\bootimages\windows
-
Install the optional components that should be included with the boot image.
-
Copy the additional required files that are needed to the mount directory.
-
Finalize the boot image using the following command: peimg.exe /prep %systemroot%\temp\bootimages\windows /f
-
Dismount the boot image using the following command: imagex.exe /unmount /commit %systemroot%\temp\bootimages\
-
Export the custom boot image. This step is necessary to reduce the image footprint: imagex.exe /export c:\winpe\winpe.wim 1 c:\winpe\boot.wim
Note Imagex.exe and peimg.exe are located in the WAIK installation directory.