DISM Tool
This is the new tutorial for the recent release of WinPE 3.1. You can still read the old tutorial here.
You will need the following to proceed:
- WAIK RTM : KB3AIK_EN.iso Version 3.0 (Read our Tutorial)
- Supplement for WAIK SP1 : waik_supplement_en-us.iso (Read our Tutorial)
- Bootable Flash drive (500MB or larger)
Once you have installed WAIK, and the WAIK supplement, then you will need to browse to your start menu and click on “Deployment Tools Command Prompt”.
Once you have launched DTCP you will need to follow through the commands I have compiled below. The first one I have provided a screenshot.
DISM – Step 1 – Prep/Cleanup
1
| DISM /Cleanup-Wim |
The DISM cleanup command simply cleans up any previous wims/mounts you have been working with. If you do this a lot, you will need to use this command otherwise you will start receiving errors from previous wims possibly still left on the system.
DISM – Step 2 – Copy WinPE 3.1 to your local C Drive
1
2
| copype.cmd x86 c:\winpe_x86 copy c:\winpe_x86\winpe.wim c:\winpe_x86\ISO\sources\boot.wim |
This creates a winpe_x86 folder on your C: drive and then copies the contents of the WinPE folder from the WAIK installation to your folder.
DISM – Step 3 – Mounting .Wim File on your local C Drive
1
| Dism /Mount-Wim /WimFile:C:\winpe_x86\winpe.wim /index:1 /MountDir:C:\winpe_x86\mount |
This command mounts the wim file that was copied over in step #2 so that you can browse the system32 folder and insert your custom scripts, etc.
DISM – Step 4 – Adding Packages to your WIM
1
2
| Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath: "C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-wmi.cab" Dism /image:C:\winpe_x86\mount /Add-Package /PackagePath: "C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\en-us\winpe-wmi_en-us.cab" |
There are many packages you can add to your WINPE boot environment, these are two I always add to mine.
DISM – Step 5 – Adding Drivers to WinPE
1
| DISM /image:c:\winpe_x86\mount /Add-Driver /driver:C:\YOUR_FOLDER_OF_INF_DRIVERS\ /recurse |
A nice addition to DISM over the previous peimg command in WINPE 2.0 is the ability to add drivers with the /recurse command. The /recurse command now allows us to simply have all of our drivers in their own directory and tell DISM to scan the root folder and everything beneath it. The number of sub directories won’t matter. I have a huge library of drivers, for example, you will want to have the network and vga drivers for anything that you boot up to in the WinPE environment. By adding the network driver to your WinPE boot environment, it allows you to access network shares for capturing and deploying .wim images.
DISM – Step 6 – Adding Custom Scripts, Batch Files, Etc.
1
| xcopy /e /y "C:\YOUR_FOLDER_OF_SCRIPTS" C:\winpe_x86\mount\Windows\System32\ |
Without adding anything to your WinPE boot environment you will simply be left with a command prompt window when booting to it on a computer. I have added over 15 different batch scripts with different functions. Click here to download my WinPE discs. One thing I highly suggest adding is GImageX. GImageX is a very small GUI program that you can add to be able to capture, deploy, and mount images within the WinPE boot environment. I have provided a picture of GImageX GUI below.
DISM – Step 7 – Unmounting your finished .WIM
1
| Dism /Unmount-Wim /MountDir:C:\winpe_x86\mount\ /Commit |
This commits the final changes to your .WIM file and anything you added to it. It is very important to unmount your .WIM file when you have finished.
DISM – Step 8 – Copies your .WIM to Boot ISO
1
| copy c:\winpe_x86\winpe.wim c:\winpe_x86\ISO\sources\boot.wim /Y |
DISM – Step 9 – Creates bootable .ISO of WinPE 3.1
1
| oscdimg -n -bc:\winpe_x86\etfsboot.com c:\winpe_x86\ISO c:\winpe_x86\winpe_x86.iso |
Now, if you are wanting to use a flash stick you will need to format a flash stick in a certain way, and then simply copy the contents of the c:\winpe_x86\ISO\ to your flash drive. And thats it! Stick it in a computer, restart, and boot to it. The .ISO made in step #9 can simply be burned to a CD with Nero or other program capable of making bootable CD and then you can boot to it in the same way.
DISM – Step 10 – Optional Backup
1
| xcopy /e /y "C:\winpe_x86" E:\BACKUP_FOLDER_FOR_LATEST_BOOT_BUILD\ |
This step is optional, but I always like to keep a backup for the future. Also, if you ever need to create another bootable flash stick or CD you can simply go to your backup and grab the files.
No comments:
Post a Comment