Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.
Part of the problem is most people don't generally deal with computer problems. So for most they think that close enough is good enough.
7) So how do I make me sum PE?
This is a Pragmatic answer.Slave the original drive. Put a good drive in the master position.Do an full install. Now you can a full OS. Who needs a PE.While the install is underway, order Pizza.
This is my first time and I'm a novice at computers but I can follow directions. However, none of this seems to be working for me.
Steps for creating a Windows PE disc1) Download the Windows Automated Installation Kit (WAIK). Currently, there are two now: a) Windows Vista WAIK for making Vista-based Windows PE 2.1 discs.b) Windows 7 WAIK for making Win7-based Windows PE 3.0 discs.I find the Windows 7 WAIK easier to deal with, so we're going to go with that one:http://www.microsoft.com/downloads/details.aspx?familyid=60A07E71-0ACB-453A-8035-D30EAD27EF72&displaylang=enYes, you read that right: that is a 1.4 GB download! However, it's worth every byte!2) Burn the ISO to a DVD using your favorite burning software or mount it with CD emulation software to save yourself a disc. 3) Install the WAIK. Even though the instructions say that it will only install on Windows Server 2003, Windows Vista, Windows Server 2008, or Windows Server 2008 R2, it'll install just fine for our purposes on Windows XP.4) Download the attached PE_batch.zip file. Extract the zip file to the root of your C:\ drive. NOTE: Yes, these are variations of Spooky's batch files from the MSFN forums, and he gets full credit for the initial idea. His were based off of WinPE 2.0 (Vista RTM WAIK). I modified these to be compatible with WinPE 3.0 and to add additional drivers without typing the command for each driver one-by-one...5) Double-click each batch file in order from 1-MakePE_Directory.bat thru 7-MakeISO.bat, following the instructions along the way.6) Burn the resulting ISO file in C:\PE\winpe_x86 or C:\PE\winpe_AMD64 to a CD using your favorite burning software.[attachment deleted by admin]
REM 1-MakePE Directory.batREM This will delete and re-create a directory called C:\PE\winpe_x86REM You must have the Windows Automated Installation Kit installed for this to work.rd /s/q %systemdrive%\PE%systemdrive%cd "%programfiles%\windows aik\tools\petools"call copype.cmd x86 %systemdrive%\PE\winpe_x86copy "%systemdrive%\PE\winpe_x86\winpe.wim" "%systemdrive%\PE\winpe_x86\ISO\sources\boot.wim"pause
REM 2-Mount.batREM This mounts the boot.wim file which is the operating system itself and allows you to edit its settings. Anything you put in this mounted directory will be in the X:\ drive when the pe is booted. There is also a folder called ISO--this is where you want files just on the CD but not in the mounted image.%systemdrive%cd \cd %programfiles%\Windows AIK\Tools\x86\Servicing"DISM /Mount-wim /WimFile:%systemdrive%\PE\winpe_x86\ISO\sources\boot.wim /index:1 /MountDir:%systemdrive%\PE\winpe_x86\mountpause
REM 3-Packages.batREM This installs the packages into the image which include HTA, MDAC, Scripting, WDS and WMI.%systemdrive%cd \cd "%programfiles%\Windows AIK\Tools\x86\Servicing"dism /image:%systemdrive%\PE\winpe_x86\mount /Add-Package /PackagePath:"%systemdrive%\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-wmi.cab"dism /image:%systemdrive%\PE\winpe_x86\mount /Add-Package /PackagePath:"%systemdrive%\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-hta.cab"dism /image:%systemdrive%\PE\winpe_x86\mount /Add-Package /PackagePath:"%systemdrive%\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-mdac.cab"dism /image:%systemdrive%\PE\winpe_x86\mount /Add-Package /PackagePath:"%systemdrive%\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-scripting.cab"dism /image:%systemdrive%\PE\winpe_x86\mount /Add-Package /PackagePath:"%systemdrive%\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-wds-tools.cab"echo The packages have now been installed and will now be prepared.dism /image:%systemdrive%\PE\winpe_x86\mount\ /Get-Packagespause
@echo offecho 4-Drivers.batecho This installs various drivers to your PE Image. Edit this accordingly to include SCSI,echo SATA, NIC, and other drivers.echo Syntax is "Dism /image:DRIVE:\Temp\Mount /Add-Driver /driver:DRIVE:FOLDER\*.inf"set SOURCE=(path to your drivers)set MOUNTPATH="%systemdrive%\PE\winpe_x86\mount"%systemdrive%cd \cd "%programfiles%\Windows AIK\Tools\Servicing\"echo Examples:echo 3Com 3C90X family NIC driversDism /image:%mountpath% /Add-Driver /driver:%source%\3Com3C90X\W9X90XBC.INFDism /image:%mountpath% /Add-Driver /driver:%source%\3Com3C90X\W9XEL90X.INFecho 3Com 3CCFE575CT family NIC driversDism /image:%mountpath% /Add-Driver /driver:%source%\3Com3CCFE575CT\NET575N5.INFecho Linksys EG1032v1Dism /image:%mountpath% /Add-Driver /driver:%source%\LinksysEG1032\v1\EG103264.infecho Linksys EG1032v2Dism /image:%mountpath% /Add-Driver /driver:%source%\LinksysEG1032\v2\EG1032v2.infecho Linksys EG1032v3Dism /image:%mountpath% /Add-Driver /driver:%source%\LinksysEG1032\v3\EG1032v3.infecho Dell Optiplex 170L Intel NIC DriversDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex170L\Intel\WinXP\E100B325.infecho Dell Optiplex 320 Broadcom NIC DriversDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex320\Broadcom\WinXP\b44win.infecho Dell Optiplex 360 Broadcom NIC DriversDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex360\k57nd60x.infecho Dell Optiplex 755 Broadcom NIC DriversDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex755\Broadcom\WinVista\b57nd60x.infecho Dell Optiplex 755 Intel NIC DriversDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex755\Intel\Vista32\E1E6032.infDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex755\Intel\Vista32\E1G6032.infecho Dell Optiplex 760 Intel NIC DriversDism /image:%mountpath% /Add-Driver /driver:%source%\Optiplex760\E1K6032.infecho The drivers have now been injected into your PE image.pauseecho 3rd party driver listDism /image:%mountpath% /Get-Driverspauseecho All driversDism /image:%mountpath% /Get-Drivers /allpause
@echo offecho 5-Additions.batecho This will copy various files and folders into your PE image. They will be loaded to the X:\ driveecho (the RAM drive) instead of the drive letter of the CD itself.echo Don't try to load too much into the RAM drive--you'll end up needing a ton of RAM just toecho use your PE disc, kinda defeating the purpose...:STEP1set source=(path to the additional files you want)set pemount=%systemdrive%\PE\winpe_x86\Mountgoto STEP2:STEP2c:cd \cd c:\Program Files\Windows AIK\Tools\PETools\echo Example of copying the contents of a "Tools" folder to the PE RAM driveecho They will be accessible in the PE environment under X:\Tools.md "%pemount%\Tools"xcopy "%source%\Tools\*.*" "%pemount%\Tools\*.*" /e /yecho echo Example of copying items to the PE RAM disk's Windows\System32 folder.echo These items will be accessible from X:\Windows\System32.xcopy "%source%\Windows\System32\*.*" "%pemount%\Windows\System32\*.*" /e /yecho The appropriate files have been copied.pause
REM 6-Unmount.batREM Once you are done changing the boot.wim OS file this will unmount the image.%systemdrive%cd "%programfiles%\Windows AIK\Tools\x86\Servicing"DISM.exe /unmount-Wim /MountDir:%systemdrive%\PE\winpe_x86\mount /Commitpause
REM 7-MakeISO.batREM This makes your .iso image.cd \%systemdrive%cd %programfiles%\Windows AIK\Tools\x86"oscdimg -n -b%systemdrive%\PE\winpe_x86\etfsboot.com %systemdrive%\PE\winpe_x86\ISO %systemdrive%\PE\winpe_x86\winpe_x86.isopause