Creating a Windows PE 3.0 CD ISO: Difference between revisions
Jump to navigation
Jump to search
BenFranske (talk | contribs) |
BenFranske (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
=Creating a Basic CD= | |||
Instructions for creating a Windows PE 3.0 (WinPE) bootable CD image with the ImageX.exe program used for creating WIM format images of Windows 7 systems. These steps would typically be done on a '''technician computer''' and not on the system which you are creating the image of. | Instructions for creating a Windows PE 3.0 (WinPE) bootable CD image with the ImageX.exe program used for creating WIM format images of Windows 7 systems. These steps would typically be done on a '''technician computer''' and not on the system which you are creating the image of. | ||
Line 16: | Line 17: | ||
#* Note that there is no space between the -b flag and the location of etfsboot.com which is the El Torrito boot sector and which makes the CD image bootable. | #* Note that there is no space between the -b flag and the location of etfsboot.com which is the El Torrito boot sector and which makes the CD image bootable. | ||
# The created CD image can be used as a virtual CD in virtualization software or burned to a CD and used to boot physical systems into WinPE with the ImageX utility included. | # The created CD image can be used as a virtual CD in virtualization software or burned to a CD and used to boot physical systems into WinPE with the ImageX utility included. | ||
=Creating a CD with Added Packages= | |||
Step 6: | |||
DISM /Image:e:\WinPeImg\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-hta.cab" | |||
DISM /Image:e:\WinPeImg\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-mdac.cab" | |||
Step 7: | |||
DISM /Image:e:\WinPeImg\mount /Get-Packages | |||
Step 9: | |||
Skip this step |
Revision as of 20:26, 15 June 2010
Creating a Basic CD
Instructions for creating a Windows PE 3.0 (WinPE) bootable CD image with the ImageX.exe program used for creating WIM format images of Windows 7 systems. These steps would typically be done on a technician computer and not on the system which you are creating the image of.
- Download the Microsoft Windows 7 Automated Installation Kit (WAIK) which is distributed as an ISO image file and use it to install WAIK on the technician computer.
- Run a command prompt as administrator.
- This can be done with Start -> All Programs -> Accessories and right-clicking on "Command Prompt" and selecting "Run as Administrator"
- Change the working directory to the PETools folder of the WAIK installation
- cd C:\Program Files\Windows AIK\Tools\PETools\
- Use the copype.cmd script to create a WinPE image build directory copype.cmd <architecture> <destination>
- To create a 32-bit WinPE build in the c:\winpe_x86 directory: copype.cmd x86 c:\winpe_x86
- Set the winpe.wim file as the bootable system for the CD by copying it from the main build directory into the iso\sources directory as boot.wim
- copy c:\winpe_x86\winpe.wim c:\winpe_x86\iso\sources\boot.wim
- Copy the ImageX.exe program from the WAIK tools into the WinPE build ISO directory
- copy “c:\Program Files\Windows AIK\Tools\x86\imagex.exe” c:\winpe_x86\iso
- Create a new bootable ISO image file with the oscdimg tool using the ISO directory as the source
- oscdimg -n c:\winpe_x86\ISO c:\winpe_x86\winpe_x86.iso -n -bc:\winpe_x86\etfsboot.com
- Note that there is no space between the -b flag and the location of etfsboot.com which is the El Torrito boot sector and which makes the CD image bootable.
- The created CD image can be used as a virtual CD in virtualization software or burned to a CD and used to boot physical systems into WinPE with the ImageX utility included.
Creating a CD with Added Packages
Step 6:
DISM /Image:e:\WinPeImg\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-hta.cab"
DISM /Image:e:\WinPeImg\mount /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-mdac.cab"
Step 7:
DISM /Image:e:\WinPeImg\mount /Get-Packages
Step 9:
Skip this step