Create a WinPE Boot Disk for Imaging & Repair
March 30th, 2007 Posted in Windows Vista
To create and deploy images of Windows Vista without any 3rd party tools like Symantec Ghost, you’ll need a bootable WinPE CD. Windows Preinstallation Environment (WinPE) is a powerful yet small version of windows that will boot from a CD or DVD and give you a command line. It’s today’s equivalent of a really powerful version of the Windows 98 boot disk essentially. The process to create a bootable WinPE disk is relatively long, but pretty painless.
To get started, you’ll need to download the Windows Automated Installation Kit or WAIK for short. The WAIK includes all the tools necessary to plan for deployments and create, deploy, & customize images. The download is a whopping 992.2MB, so feel free to take a walk to get some coffee while you wait. Once it’s downloaded, you’ll need to burn the image to a DVD or mount the .img file and then install it. After the install, you’ll need to open a command prompt and follow these steps:cd C:\Program Files\Windows AIK\Tools\PETools\
copype.cmd x86 C:\WinPE_x86In the above command, you can choose either x86 for standard 32 bit machines, amd64, or ia64. You can also choose any directory you like for the output files, but a directory indicating architecture is always a good idea now that 64 bit machines are becoming more prevalent. You now need to copy ImageX to the tools directory of your new image. ImageX is Microsoft’s new tool for creating & deploying WIM images. copy "C:\Program Files\Windows AIK\Tools\x86\imagex.exe" C:\WinPE_x86\iso\ToolsCreate a text file with your favorite text editor with the following data in it and save it as wimscript.ini in C:\WinPE_x86\iso\Tools.[ExclusionList]ImageX will automatically detect wimscript.ini if it’s located in the same folder with the ImageX executable. Now you’re ready to create an iso image. From the PETools directory of WindowsAIK do the following:
ntfs.log
hiberfil.sys
pagefile.sys
“System Volume Information”
RECYCLER
Windows\CSC
[CompressionExclusionList]
*.mp3
*.zip
*.cab
\WINDOWS\inf\*.pnfoscdimg -n -bc:\winpe_x86\etfsboot.com c:\winpe_x86\ISO c:\winpe_x86\winpe_x86.isoNow burn the iso to a CD with your favorite burning program (Nero, Easy CD Creator, etc).
4 Responses to “Create a WinPE Boot Disk for Imaging & Repair”
By Andrew J. Leer on Oct 30, 2008
So wait a minute…
You said that you can use ia64 for 64-bit Intel processors right?
Well assuming that the directories in the AIK installation are the supported architectures.
Please see my blog post here…
http://userssuck.com/2007/03/30/create-a-winpe-boot-disk-for-imaging-repair/
By Andrew J. Leer on Oct 30, 2008
Sorry my bad….
My blog post here…
http://leeand00.tiddlyspot.com/#%5B%5BCreating%20a%20Windows%20VIM%20Image%5D%5D
By admin on Oct 30, 2008
Andrew, ia64 would be used for the Intel Itanium 64 bit architecture. Most likely you’ll want to use the amd64 option which will work on the Pentium D, and the Core and Core2 series of Intel processors.