Customized Windows PE 5.0
A quick run-through covering creating a customized Windows PE bootable drive, mainly so I don't space out and forget any of the steps (*ahem* again). The below is based on the Deployment and Imaging tools available by installing Windows ADK 8.1 Create Windows PE files Run Deployment and Imaging Tools Environment as Administrator Create the base structure with copype command: copype <architecture> <directory> Example for 64 bit: copype amd64 c:\winpe64 Example for 32 bit: copype x86 c:\winpe32 Paths to packages amd64: \Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs x86: \Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\WinPE_OCs Mount boot.wim (assuming current path is the root of WinPE, e.g., c:\winpe) dism /mount-wim /wimfile:media\sources\boot.wim /index:1 /mountdir:mount Adding Key Packages (as...