Jump to content











Photo
- - - - -

QuickPE

winpe3 winpe winre boot winpe4

  • Please log in to reply
109 replies to this topic

#1 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 24 July 2013 - 04:02 PM

Posted Image

File Name: QuickPE
File Submitter: erwan.l
File Submitted: 24 Jul 2013
File Updated: 03 Nov 2017
File Category: Tools

Yet another tool to generate a minimalist winpe iso using the Windows Assessment and Deployment Toolkit (ADK) / Winpe4 or Windows Automated Installation Kit / Winpe3.
The batch also uses wimlib to add extra files within the boot.wim file.

Alternatively, one can also use the Windows Repair Disk or Windows DVD to build a Winpe (no need for WAIK or ADK then).
One can also add Winpe packages or add Windows drivers.

The batch will :
-create a winpe using the copype winpe command from MS ADK or MS WAIK,
-modify boot.wim to add a tinyshell (see screenshot) so that one can launch explorer++, cmd, taskmgr, penetwork, or shutdown/reboot,
-create winpe iso (less than 200 MB).

Uncompress to x:\quickpe, stuff your tools (optional) in pe_extra folder, and launch make.cmd.
Get winpe.iso in x:\quickpe\%processor_architecture%.

Future possible evolutions : turn into a GUI, ...

Regards,
Erwan

Click here to download this file
  • Brito and florin91 like this

#2 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 25 July 2013 - 03:00 PM

New version 0.3 can generate winpe4.iso using MS ADK, winpe3.iso using MS AIK or winre.iso using local WINRE.RIM.

 

See minimalist script below to generate a pseudo winpe using winre (no more ADK, no more AIK needed).

Wimlib is used to extract the needed files to make the iso and also to update the wim with some extra files.

SETLOCAL
rem *** STEP 1 *********
set WINPE_ARCH=x86
set DEST=%~dp0%winpe_arch%
rmdir %dest% /s /q
mkdir %dest%
mkdir %dest%\iso
mkdir %dest%\iso\boot
mkdir %dest%\iso\sources
for /f %%a in ('dir /b /a:h /S c:\recovery\*.wim') do set winre=%%a
attrib -H -S -R %winre%
copy %winre% %dest%\iso\sources\boot.wim
attrib +H +S +R %winre%
pe_tools\wimlib\wimlib-imagex.exe extract %dest%\iso\sources\boot.wim 1 /Windows/Boot/PCAT/bootmgr --dest-dir=%dest%\iso
ren %dest%\iso\bootmgr BOOTMGR
pe_tools\wimlib\wimlib-imagex.exe extract %dest%\iso\sources\boot.wim 1 /Windows/Boot/DVD/PCAT/bcd --dest-dir=%dest%\iso\boot
pe_tools\wimlib\wimlib-imagex.exe extract %dest%\iso\sources\boot.wim 1 /Windows/Boot/DVD/PCAT/boot.sdi --dest-dir=%dest%\iso\boot
pe_tools\wimlib\wimlib-imagex.exe extract %dest%\iso\sources\boot.wim 1 /Windows/Boot/DVD/PCAT/etfsboot.com --dest-dir=%dest%\iso\boot
echo "WINRE BUILT OK"
pause
cls
rem *** STEP 2 ********
cd %~dp0
del wim-update.new /q
sed -e "s/#path#/\%~dp0\/g" wim-update.txt > sed -e "s/:/:\\/g"  > wim-update.new
pe_tools\wimlib\wimlib-imagex.exe update %dest%\ISO\sources\boot.wim --verbose < %~dp0wim-update.new
echo "WIM FILE UPDATE OK"
pause
cls
REM *** STEP 3 ********
mkisofs.exe -iso-level 4 -l -R -J -joliet-long -D -volid "WINRE" -b boot/etfsboot.com -no-emul-boot -boot-load-size 8 -hide boot.catalog -o %dest%\winre.iso %dest%\iso
echo "ISO BUILT OK"
pause


#3 totoblack100

totoblack100

    Newbie

  • Members
  • 20 posts
  •  
    Madagascar

Posted 13 August 2013 - 02:27 AM

thx man! A Good work and good stuff! I like

#4 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 13 August 2013 - 11:18 PM

Some changes/additions in latest revision 0.4

 

-any files/folders in \pe_extra will be added in the wim file in the \tools folder
 
-winre.cmd renamed to make_re.cmd to be consistent with make_pe3.cmd and mape_pe4.cmd
 
-added setres to the zip file
 
See attached a screenshot of winre.iso made with QuickPE batch.
 
Erwan

Attached Thumbnails

  • winre.png

  • Brito and totoblack100 like this

#5 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 15 August 2013 - 02:29 PM

In my journey to make a quick and portable winpe generator tool, here comes latest revision 0.5 :

 

-added make_re_from_iso.cmd which will generate a winpe iso based from a windows 7 or 8 iso.
-added a dpinst GUI so that one can easily load drivers from a driverspack.
-added keyboard layout changer to the zip file.
-added ntpwedit 0.4 to the zip file.
 
make_pe4.cmd will
  • trigger copype from MS ADK
  • update boot.wim using wimlib from Synchronicity
  • create an iso using oscimg from MS ADK

make_pe3.cmd will

  • trigger copype from MS WAIK
  • update boot.wim using wimlib from Synchronicity
  • create an iso using oscimg from MS WAIK

make_re.cmd will

  • retrieve a winre.wim from c:\recovery (provided you generated a repair disc at some point)
  • update winre.wim using wimlib from Synchronicity
  • create an iso using mkisofs from cdrtools

make_re_from_iso.cmd will

  • retrieve a boot.wim from within a windows (7 or 8) install ISO using 7zip
  • update boot.wim (index 2) using wimlib from Synchronicity
  • create an iso using mkisofs from cdrtools

make_re_from_dvd.cmd will

  • retrieve a boot.wim from within a windows (7 or 8) install DVD
  • update boot.wim (index 2) using wimlib from Synchronicity
  • create an iso using mkisofs from cdrtools

Regards,

Erwan


  • Brito and totoblack100 like this

#6 totoblack100

totoblack100

    Newbie

  • Members
  • 20 posts
  •  
    Madagascar

Posted 15 August 2013 - 03:01 PM

thx man! (y)

#7 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 12:57 PM

Bonjour Erwan.

 

L'OS installé est Windows 8 Entreprise 64 bits français.

Windows ADK est installé.

Mon disque dur est partitionné en 2: C et F.

Que je lance make_pe4.cmd en tant qu'admin depuis C:\QuickPE ou F:\QuickPE, j'obtiens des erreurs, que tu peux voir dans la capture d'écran ci-dessous.

Qu'est-ce que j'ai loupé?

Cordialement.

 

PS: j'ajoute que j'ai fais la même tentative depuis Windows 7 Pro 64 bits français avec le même résultat.

___________________________________________________________________________________________________

Hi Erwann.

 

OS installed is Windows 8 64 bits Enterprise French.

Windows ADK is installed.

I have set 2 partitions : C and F.

Whatever the location I run QuickPE\make_pe4.cmd from (from C:\QuickPE\ or from F:\QuickPE and as admin), I get errors.

 

I tried the same on Windows 7 Pro 64 bits french with the same results.

 

Here is the screenshot:

 

Capture.PNG

 

What am I doing wrong?


Edited by Vikram, 18 August 2013 - 01:08 PM.


#8 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 01:40 PM

Bonjour Erwan.

 

L'OS installé est Windows 8 Entreprise 64 bits français.

Windows ADK est installé.

Mon disque dur est partitionné en 2: C et F.

Que je lance make_pe4.cmd en tant qu'admin depuis C:\QuickPE ou F:\QuickPE, j'obtiens des erreurs, que tu peux voir dans la capture d'écran ci-dessous.

Qu'est-ce que j'ai loupé?

Cordialement.

 

PS: j'ajoute que j'ai fais la même tentative depuis Windows 7 Pro 64 bits français avec le même résultat.

___________________________________________________________________________________________________

Hi Erwann.

 

OS installed is Windows 8 64 bits Enterprise French.

Windows ADK is installed.

I have set 2 partitions : C and F.

Whatever the location I run QuickPE\make_pe4.cmd from (from C:\QuickPE\ or from F:\QuickPE and as admin), I get errors.

 

I tried the same on Windows 7 Pro 64 bits french with the same results.

 

Here is the screenshot:

 

Capture.PNG

 

What am I doing wrong?

 

at first look, seems setenv4.cmd is missing :are you sure you unzipped the entire zip to x:\quickpe (x: or any other letter...)?

 

edit : i have updated the batch files with a cd /D %~dp0 just to ensure a current running path.

download again here and retry please.



#9 Wonko the Sane

Wonko the Sane

    The Finder

  • Advanced user
  • 16066 posts
  • Location:The Outside of the Asylum (gate is closed)
  •  
    Italy

Posted 18 August 2013 - 01:53 PM

If I may :unsure::
PUSHDing the "right" path and POPDing it may help, as well a %ERRORLEVEL% CHECK may be of use.
But it is possible that the issue is with ENABLEEXTENSIONS.
 http://ss64.com/nt/pushd.html
 
 
@echo off
SETLOCAL ENABLEEXTENSIONS
cls
pushd "%~dp0"
call setenv4.cmd
rem *** STEP 1 *********
set WINPE_ARCH=x86
set DEST=%~dp0%winpe_arch%
rmdir %dest% /s /q
call copype %WINPE_ARCH% %dest%
IF %ERRORLEVEL%.==0. (echo "!!!!!! WINPE4 BUILT OK !!!!!!") else (echo "Error occurred")
rem *** STEP 2 ********
cd %~dp0
del wim-update.new /q
sed -e "s/#path#/\%~dp0\/g" wim-update.txt > sed -e "s/:/:\\/g" > wim-update.new
pe_tools\wimlib\wimlib-imagex.exe update %dest%\media\sources\boot.wim --verbose < %~dp0wim-update.new
IF %ERRORLEVEL%.==0. (echo "!!!!!! WIM FILE UPDATE OK !!!!!!") else (echo "Error occurred")
REM *** STEP 3 ********
del %dest%\media\boot\bootfix.bin
oscdimg -b"%dest%\fwfiles\etfsboot.com" -n %winpe_arch%\media %dest%\winpe4.iso
IF %ERRORLEVEL%.==0. (echo "!!!!!! ISO BUILT OK !!!!!!") else (echo "Error occurred")
popd 
pause
:cheers:
Wonko

#10 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 02:26 PM

at first look, seems setenv4.cmd is missing :are you sure you unzipped the entire zip to x:\quickpe (x: or any other letter...)?

 

Yes, of course.

There is also a problem when the script call "copype", it fails here.

How it may work on your computer?

 

New results:

 

Capture2.PNG


Edited by Vikram, 18 August 2013 - 02:33 PM.


#11 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 02:34 PM

Yes, of course.
There is also a problem when the script wall "copype", it fails here.
How it may work on your computer?
 
New results:
 
Capture2.PNG


Setenv.cmd is the script handling winpe paths.
Where is your ms kit installed?

#12 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 05:11 PM

Where is your ms kit installed?

 Windows Kits is installed in "Program Files (x86)".

 

C:\Program Files (x86)\Windows Kits\8.0

 

I should have say in the first place that your script sounds promising, that's why I was kind of frustrated when I didn't get it to work.


Edited by Vikram, 18 August 2013 - 05:17 PM.


#13 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 05:28 PM

I have updated the script with wonko's remark about errorlevel.

Need to check the pushd/popd thingie (never used it yet).

 

As a whole here below the make_pe3.cmd (make_pe4.cmd is basically the same) :

 

  • First we set our current directorry.
  • Then we call setenv3.cmd to set winpe path allowing us to call copype, oscdimg, etc : this script only updates %path%.
  • Then we create our winpe launching copype and pointing to x86 subdir.
  • Then we update the wim file with wimlib-imagex.
  • Finally we burn it.

 

Should be quiet straight forward and should run everywhere?

 

In you case, Vikram, it is as if setenv3.cmd is either not called or erroring ?

You sure you download latest version?

 

edit : i think i found the issue...

on a x64 system, the below setenv3.cmd wont work I guess? I should adapt it depending on the architecture.

 

rem winpe variables
echo "SETTING WINPE PATH"
set kitroot=%ProgramFiles%\Windows AIK\Tools\PETools
set PATH=%kitroot%;%kitroot%\..\x86;%kitroot%\..\x86\Servicing;%PATH%;

make_pe3.cmd

@echo off
cls
SETLOCAL
cd /D %~dp0
call setenv3.cmd
rem *** STEP 1 *********
set WINPE_ARCH=x86
set DEST=%~dp0%winpe_arch%
rmdir %dest% /s /q
call copype %WINPE_ARCH% %dest%
IF NOT %ERRORLEVEL%.==0. goto error
move %dest%\winpe.wim %dest%\ISO\sources\boot.wim
echo "!!!!!! WINPE3 BUILT OK !!!!!!"
rem *** STEP 2 ********
cd %~dp0
del wim-update.new /q
sed -e "s/#path#/\%~dp0\/g" wim-update.txt > sed -e "s/:/:\\/g"  > wim-update.new
pe_tools\wimlib\wimlib-imagex.exe update %dest%\ISO\sources\boot.wim --verbose < %~dp0wim-update.new
IF NOT %ERRORLEVEL%.==0. goto error
echo "!!!!!! WIM FILE UPDATE OK !!!!!!"
REM *** STEP 3 ********
del %dest%\iso\boot\bootfix.bin
oscdimg -n -m -o -b"%dest%\etfsboot.com" %winpe_arch%\iso %dest%\winpe3.iso
IF NOT %ERRORLEVEL%.==0. goto error
echo "!!!!!! ISO BUILT OK !!!!!!"
goto end
:error
echo .
echo "!!!!!! ERROR OCCURED !!!!!!"
echo .
:end
pause


#14 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 05:43 PM

I am updating my setenv3.cmd (and setenv4.cmd) for non x86 hosts.

 

Still how does the %programfiles% dos variables loog like when launch from a cmd batch?

Is it pointing to c:\program files or c:\program files\x86?

Or is there another %programfiles% variable on x64 hosts?

 

Vikram : can you copy paste the result of a set command on your x64 host?

Would very much help me :)

Then I could fix the below.

rem winpe variables
echo "SETTING WINPE PATH"

if %PROCESSOR_ARCHITECTURE% == x86 (
goto :x86
) else (
goto :x64
)

:x86
echo "x86 arch"
set kitroot=%ProgramFiles%\Windows AIK\Tools\PETools
set PATH=%kitroot%;%kitroot%\..\x86;%kitroot%\..\x86\Servicing;%PATH%;
goto :eof

:x64
echo "x64 arch"
set kitroot=%ProgramFiles%\Windows AIK\Tools\PETools
set PATH=%kitroot%;%kitroot%\..\x86;%kitroot%\..\x86\Servicing;%PATH%;
goto :eof


#15 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 06:43 PM

On va se parler en français, ça ira plus vite (après 20H00 et avec le ventre vide, j'ai du mal).

 

Que veux-tu dire par "can you copy paste the result of a set command on your x64 host?" Comment puis-je t'aider?

 

J'ai relevé une erreur dans l'archive téléchargée à l'instant; dans setenv4.cmd, il y a 2 :86.


Edited by Vikram, 18 August 2013 - 06:43 PM.


#16 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 06:49 PM

en francais :

une capture d ecran de la commande SET en ligne de commande.

je pense trouver 2 variables %programfiles% et %programfiles(x86)%.

j'ai fixé setenv4.cmd : retélécharge le zip et re tente?

 

in english:

a screenshot (or dump) of the SET command.

i believe it will show %programfiles% and %programfiles(x86)%.

i have fixed setenv4.cmd : download and give it another try?

 

the new setenv3.cmd (same goes for setenv4.cmd).

rem winpe variables
echo "SETTING WINPE PATH"

if %PROCESSOR_ARCHITECTURE% == x86 (
goto :x86
) else (
goto :x64
)

:x86
echo "x86 arch"
set kitroot=%ProgramFiles%\Windows AIK\Tools\PETools
set PATH=%kitroot%;%kitroot%\..\x86;%kitroot%\..\x86\Servicing;%PATH%;
goto :eof

:x64
echo "x64 arch"
set kitroot=%programfiles(x86)%\Windows AIK\Tools\PETools
set PATH=%kitroot%;%kitroot%\..\x86;%kitroot%\..\x86\Servicing;%PATH%;
goto :eof


#17 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 07:08 PM

The output of the set command:

C:\>set
ALLUSERSPROFILE=C:\ProgramData
APPDATA=C:\Users\Vykram\AppData\Roaming
AppsRoot=D:\
asl.log=Destination=file
CommonProgramFiles=C:\Program Files\Common Files
CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
CommonProgramW6432=C:\Program Files\Common Files
COMPUTERNAME=MBP12
ComSpec=C:\Windows\system32\cmd.exe
FP_NO_HOST_CHECK=NO
HOMEDRIVE=C:
HOMEPATH=\Users\Vykram
LOCALAPPDATA=C:\Users\Vykram\AppData\Local
LOGONSERVER=\\MBP12
NUMBER_OF_PROCESSORS=8
OS=Windows_NT
Path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v
1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files (x86)\Com
mon Files\Acronis\SnapAPI\;C:\Program Files (x86)\Acronis\CommandLineTool\;C:\Program Files\OpenVPN\
bin
PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE=AMD64
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=3a09
ProgramData=C:\ProgramData
ProgramFiles=C:\Program Files
ProgramFiles(x86)=C:\Program Files (x86)
ProgramW6432=C:\Program Files
PROMPT=$P$G
PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
PUBLIC=C:\Users\Public
SystemDrive=C:
SystemRoot=C:\Windows
TEMP=C:\Users\Vykram\AppData\Local\Temp
TMP=C:\Users\Vykram\AppData\Local\Temp
USERDOMAIN=MBP12
USERDOMAIN_ROAMINGPROFILE=MBP12
USERNAME=Vykram
USERPROFILE=C:\Users\Vykram
windir=C:\Windows

Ok, this time running make_pe4.cmd made a very talkative output.

Here it is:

"SETTING WINPE PATH"
"x64 arch"
Le fichier spécifié est introuvable.

===================================================
Creating Windows PE customization working directory

    F:\QuickPE\x86
===================================================

C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\bootmgr
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\bootmgr.efi
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\bg-bg\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\BCD
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\boot.sdi
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\bootfix.bin
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\memtest.exe
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\bg-bg\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\cs-cz\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\cs-cz\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\da-dk\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\da-dk\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\de-de\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\de-de\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\el-gr\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\el-gr\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\en-gb\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\en-us\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\en-us\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\es-es\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\es-es\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\et-ee\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\fi-fi\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\fi-fi\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\chs_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\cht_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\jpn_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\kor_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\malgunn_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\malgun_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\meiryon_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\meiryo_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\msjhn_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\msjh_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\msyhn_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\msyh_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\segmono_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\segoen_slboot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\segoe_slboot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Fonts\wgl4_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\fr-fr\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\fr-fr\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\hr-hr\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\hu-hu\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\hu-hu\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\it-it\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\it-it\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ja-jp\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ja-jp\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ko-kr\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ko-kr\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\lt-lt\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\lv-lv\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\nb-no\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\nb-no\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\nl-nl\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\nl-nl\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\pl-pl\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\pl-pl\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\pt-br\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\pt-br\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\pt-pt\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\pt-pt\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\Resources\bootres.dll
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ro-ro\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ru-ru\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\ru-ru\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\sk-sk\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\sl-si\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\sr-latn-cs\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\sv-se\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\sv-se\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\tr-tr\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\tr-tr\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\uk-ua\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\zh-cn\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\zh-cn\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\zh-hk\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\zh-hk\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\zh-tw\bootmgr.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\Boot\zh-tw\memtest.exe.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\cs-cz\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\da-dk\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\de-de\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\bootia32.efi
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\bg-bg\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\cs-cz\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\da-dk\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\de-de\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\el-gr\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\en-gb\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\en-us\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\es-es\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\et-ee\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\fi-fi\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\fr-fr\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\hr-hr\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\hu-hu\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\it-it\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\ja-jp\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\ko-kr\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\lt-lt\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\lv-lv\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\nb-no\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\nl-nl\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\pl-pl\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\pt-br\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\pt-pt\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\ro-ro\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\ru-ru\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\sk-sk\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\sl-si\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\sr-latn-cs\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\sv-se\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\tr-tr\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\uk-ua\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\zh-cn\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\zh-hk\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Boot\zh-tw\bootia32.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\BCD
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\memtest.efi
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\cs-cz\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\da-dk\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\de-de\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\el-gr\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\en-us\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\es-es\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\fi-fi\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\chs_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\cht_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\jpn_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\kor_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\malgun_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\meiryo_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\msjh_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\msyh_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\segmono_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\segoe_slboot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Fonts\wgl4_boot.ttf
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\fr-fr\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\hu-hu\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\it-it\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\ja-jp\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\ko-kr\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\nb-no\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\nl-nl\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\pl-pl\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\pt-br\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\pt-pt\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\Resources\bootres.dll
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\ru-ru\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\sv-se\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\tr-tr\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\zh-cn\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\zh-hk\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\EFI\Microsoft\Boot\zh-tw\memtest.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\el-gr\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\en-gb\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\en-us\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\es-es\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\et-ee\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\fi-fi\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\fr-fr\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\hr-hr\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\hu-hu\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\it-it\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\ja-jp\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\ko-kr\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\lt-lt\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\lv-lv\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\nb-no\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\nl-nl\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\pl-pl\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\pt-br\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\pt-pt\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\ro-ro\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\ru-ru\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\sk-sk\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\sl-si\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\sr-latn-cs\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\sv-se\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\tr-tr\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\uk-ua\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\zh-cn\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\zh-hk\bootmgr.efi.mui
C:\Program Files (x86)\Windows Kits\8.0\\Assessment and Deployment Kit\Windows Preinstallation Environment\x86\Media\zh-tw\bootmgr.efi.mui
186 fichier(s) copié(s)
        1 fichier(s) copié(s).
        1 fichier(s) copié(s).
        1 fichier(s) copié(s).

Success

"!!!!!! WINPE4 BUILT OK !!!!!!"
Impossible de trouver F:\QuickPE\wim-update.new
Deleted WIM path "\windows\system32\winpeshl.ini"
Deleted WIM path "\windows\tinyshell.exe"
Deleted WIM path "\program files\explorer++"
Deleted WIM path "\program files\penetwork"
Scanning "F:\QuickPE\pe_files\windows\system32\winpeshl.ini" (loading as WIM path: "\windows\system32\winpeshl.ini")...
Scanning "\\?\F:\QuickPE\pe_files\windows\system32\winpeshl.ini"
Scanning "F:\QuickPE\pe_files\windows\tinyshell.exe" (loading as WIM path: "\windows\tinyshell.exe")...
Scanning "\\?\F:\QuickPE\pe_files\windows\tinyshell.exe"
Scanning "F:\QuickPE\pe_files\program files\explorer++" (loading as WIM path: "\program files\explorer++")...
Scanning "\\?\F:\QuickPE\pe_files\program files\explorer++"
Scanning "\\?\F:\QuickPE\pe_files\program files\explorer++\Explorer++.exe"
Scanning "F:\QuickPE\pe_files\program files\penetwork" (loading as WIM path: "\program files\penetwork")...
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork.exe"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork.ini"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork_Eng.lng"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork_Fr.lng"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork_Ger.lng"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork_Por.lng"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\PENetwork_Rus.lng"
Scanning "\\?\F:\QuickPE\pe_files\program files\penetwork\startnet.exe"
Scanning "F:\QuickPE\pe_extra" (loading as WIM path: "\extra")...
Scanning "\\?\F:\QuickPE\pe_extra"
Scanning "\\?\F:\QuickPE\pe_extra\dpinst"
Scanning "\\?\F:\QuickPE\pe_extra\dpinst\dpinst.exe"
Scanning "\\?\F:\QuickPE\pe_extra\dpinst\dpinst.xml"
Scanning "\\?\F:\QuickPE\pe_extra\dpinst\dpinstGUI.exe"
Scanning "\\?\F:\QuickPE\pe_extra\dpinst\dpinst_man.xml"
Scanning "\\?\F:\QuickPE\pe_extra\KeyboardLayoutChanger.exe"
Scanning "\\?\F:\QuickPE\pe_extra\ntpwedit04"
Scanning "\\?\F:\QuickPE\pe_extra\ntpwedit04\COPYING.txt"
Scanning "\\?\F:\QuickPE\pe_extra\ntpwedit04\GPL.txt"
Scanning "\\?\F:\QuickPE\pe_extra\ntpwedit04\HISTORY.txt"
Scanning "\\?\F:\QuickPE\pe_extra\ntpwedit04\ntpwedit.exe"
Scanning "\\?\F:\QuickPE\pe_extra\setres"
Scanning "\\?\F:\QuickPE\pe_extra\setres\1024x768.bat"
Scanning "\\?\F:\QuickPE\pe_extra\setres\SetRes.exe"
Scanning "\\?\F:\QuickPE\pe_extra\setres\setres.txt"
Scanning "\\?\F:\QuickPE\pe_extra\stop_firewall.bat"
Writing LZX-compressed data using 8 threads
4772 KiB of 4772 KiB (uncompressed) written (100% done)
"!!!!!! WIM FILE UPDATE OK !!!!!!"

OSCDIMG 2.56 CD-ROM and DVD-ROM Premastering Utility
Copyright (C) Microsoft, 1993-2012. All rights reserved.
Licensed only for producing Microsoft authorized content.


Scanning source tree
Scanning source tree complete (186 files in 136 directories)

Computing directory information complete

Image file is 181082112 bytes

Writing 186 files in 136 directories to F:\QuickPE\x86\winpe4.iso

100% complete

Final image file is 181082112 bytes

Done.
"!!!!!! ISO BUILT OK !!!!!!"
Appuyez sur une touche pour continuer...

.... I got a fresh winpe4.iso in F:\QuickPE\x86\. I'm going to test it.


Edited by Vikram, 18 August 2013 - 07:13 PM.


#18 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 07:13 PM

Cool Vikram,

 

I think it does work now, your iso is there : F:\QuickPE\x86\winpe4.iso :)

Ok for you?

 

You can now burn it to cd/dvc, or usb or boot it via PXE !

 

Thanks a lot for the debugging !

 

Regards,

Erwan



#19 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 07:25 PM

 

Thanks a lot for the debugging !

 

You're welcome.

 

This is winpe4.iso running in a Windows 7 x64 VMware machine:

 

Capture3.PNG



#20 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 18 August 2013 - 07:31 PM

Very nice !

 

I usually put the following in my quickpe\pe_extra folder:

-qtweb.exe which is a handy standalone web to retrieve tools from winpe over the internet

-clonedisk to perform my disk operation (backup/restore/clone, etc)

 

Cheers,

Erwan



#21 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 07:56 PM

About Explorer++, I didn't get it to show me the system files like bootmgr, although in Tools > Options > Files and Folders, "Hide protected operating system files" in unticked.

 

I guess there are some adjustements to make here.



#22 Vikram

Vikram

    Newbie

  • Members
  • 28 posts
  •  
    France

Posted 18 August 2013 - 08:16 PM

After downloading Explorer++ from PortableApps, I discovered that there is a xml file to generate from inside Explorer++.exe (Tools > Options > General > Run in portable mode) to make it remembers settings.


Edited by Vikram, 18 August 2013 - 08:17 PM.


#23 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 19 August 2013 - 07:58 PM

After downloading Explorer++ from PortableApps, I discovered that there is a xml file to generate from inside Explorer++.exe (Tools > Options > General > Run in portable mode) to make it remembers settings.

 

you can put this xml file in x:\quickpe\program files\explorer++ and it should be added to the winpe iso.

same goes with penetwork.ini in x:\quickpe\program files\penetwork.



#24 tony62

tony62
  • Members
  • 7 posts
  •  
    Wales

Posted 20 August 2013 - 07:19 PM

This is coming along nicely, great job Erwan!  I had created a batch file which adds a few extras & creates a bootable flash stick primarily for work but this is great!!

@ECHO OFF
:START

set imagepath=D:\WIM\Wims
set exepath=D:\WIM\Exes
set mountpath=D:\WIM\Mount

ECHO _________________________________________
ECHO DISM / Windows Imaging Main Menu:
ECHO.                                         
ECHO   Menu Choices                           
ECHO.                                         
ECHO 1 Mount WIM File to D:\WIM\Mount
ECHO 2 Registry Load
ECHO 3 Registry Unload
ECHO 4 Set Locale
ECHO 5 Set Scratch Space          
ECHO 6 Unmount WIM File and Commit changes    
ECHO 7 Unmount WIM File and Discard changes   
ECHO 8 Cleanup WIM Mount Directory (D:\WIM\Mount)
ECHO 9 Create Bootable USB Drive
ECHO 10 Help
ECHO 11 Exit                                   
ECHO _________________________________________
ECHO. 
SET /P userChoice=ENTER OPTION:

if %userChoice% == 1 GOTO MOUNTWIM
if %userChoice% == 2 GOTO REGLOAD
if %userChoice% == 3 GOTO REGUNLOAD
if %userChoice% == 4 GOTO SETLOCALE
if %userChoice% == 5 GOTO SCRATCHSPACE
if %userChoice% == 6 GOTO COMMIT
if %userChoice% == 7 GOTO DISCARD
if %userChoice% == 8 GOTO CLEANUP
if %userChoice% == 9 GOTO DISKPART
if %userChoice% == 10 GOTO HELP
if %userChoice% == 11 GOTO QUITMENU

:MOUNTWIM
cls
echo .WIM files in "%imagepath%":
echo.
for /f "tokens=* delims=" %%a in ('dir /b %imagepath%\*.wim') do echo %%a: & %exepath%\imagex.exe /info "%imagepath%\%%a" | findstr.exe "IMAGE INDEX <NAME>" & echo.
echo.
SET /P WimFile=Enter Full .WIM Image to Mount (with .wim extension):
SET /P index=Enter INDEX to use (usually 1, number value):
%exepath%\DISM.exe /MOUNT-WIM /WIMFILE:%imagepath%\%WimFile% /INDEX:%index% /MountDir:%mountpath%
echo Image: %WimFile% mounted at D:\Mount
GOTO START

:REGLOAD
cls
reg.exe load HKLM\WIM_Software %mountpath%\Windows\System32\config\SOFTWARE
reg.exe load HKLM\WIM_System %mountpath%\Windows\System32\config\SYSTEM
echo Registry Loaded
GOTO START

:REGUNLOAD
cls
reg.exe unload HKLM\WIM_Software
reg.exe unload HKLM\WIM_System
echo Registry Unloaded
GOTO START

:SETLOCALE
cls
DISM.exe /image:%mountpath% /Set-SysLocale:en-GB
DISM.exe /image:%mountpath% /Set-UserLocale:en-GB
DISM.exe /image:%mountpath% /Set-InputLocale:0809:00000809
DISM.exe /image:%mountpath% /Set-TimeZone:"GMT Standard Time"
DISM.exe /image:%mountpath% /Get-Intl
pause
echo GB locale set
GOTO START

:SCRATCHSPACE
cls
DISM.exe /image:%mountpath% /Set-ScratchSpace:128
echo Scratch Space set to 128 MB
DISM.exe /image:%mountpath% /Get-ScratchSpace
pause
GOTO START

:COMMIT
cls
DISM.exe /UNMOUNT-WIM /MountDir:%mountpath% /COMMIT
echo WIM Updated with Changes
echo.
GOTO START

:DISCARD
cls
DISM.exe /UNMOUNT-WIM /MountDir:%mountpath% /DISCARD
echo WIM NOT updated, changes discarded
echo.
GOTO START

:CLEANUP
cls
DISM.exe /CLEANUP-WIM
echo MOUNTDIR clean up finished
echo.
GOTO START

:DISKPART
cls
start diskpart
ECHO _________________________________________
echo Use These Commands To Create Bootable Drive:
echo.
echo 1 list disk
echo 2 select disk # (Where '#' is your UFD)
echo 3 clean
echo 4 create partition primary
echo 5 select partition 1
echo 6 active
echo 7 format quick fs=ntfs
echo 8 assign
echo 9 exit 
ECHO _________________________________________
pause
GOTO START

:HELP
cls
start %exepath%\winpe.chm
GOTO START
:QUITMENU



#25 erwan.l

erwan.l

    Platinum Member

  • Developer
  • 3041 posts
  • Location:Nantes - France
  •  
    France

Posted 24 August 2013 - 05:21 PM

added in latest version 0.7

- add-pack3.sample, add-pack4.sample (rename to cmd to add a winpe package in winpe3 or winpe4)
- _run_me.cmd as a main menu
 
_run_me.cmd was inspired by previous post from tony62.
See attached screenshot.
 
Add-pack4.sample, if renamed to add-pack4.cmd will be called by make_pe4.cmd.
Same goes with add-pack3.sample and make_pe3.sample.
 
For example, the below add-pack4.cmd will add wmi and iscsi to winpe4.iso.
 
set mnt=%~dp0mnt
Dism /mount-image /imagefile:%1 /index:1 /mountdir:%mnt%
Dism /image:%mnt% /add-package /packagepath:"%winperoot%\x86\WinPE_OCs\winpe-WMI.cab" 
Dism /image:%mnt% /add-package /packagepath:"%winperoot%\x86\WinPE_OCs\en-us\winpe-WMI_en-us.cab" 
Dism /image:%mnt% /add-package /packagepath:"%winperoot%\x86\WinPE_OCs\winpe-StorageWMI.cab" 
Dism /image:%mnt% /add-package /packagepath:"%winperoot%\x86\WinPE_OCs\en-us\winpe-StorageWMI_en-us.cab" 
Dism /unmount-image /mountdir:%mnt% /commit

 

Attached Thumbnails

  • quickpe_menu.png






Also tagged with one or more of these keywords: winpe3, winpe, winre, boot, winpe4

1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users