Jump to content











Photo
* * * * * 2 votes

Produce their own PE3


  • Please log in to reply
182 replies to this topic

#151 Wasif

Wasif

    Newbie

  • Members
  • 25 posts
  •  
    Pakistan

Posted 20 December 2010 - 11:07 AM

@xaintgain and Kp
error is
Ramdisk creation failed due to insiifcent memory
how can i fix this

#152 Wasif

Wasif

    Newbie

  • Members
  • 25 posts
  •  
    Pakistan

Posted 20 December 2010 - 11:14 AM

@xaintain n KP
sory error is
Ramdisk device creation failed due to insufficient memory"

#153 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 20 December 2010 - 12:08 PM

@xaintain n KP
sory error is
Ramdisk device creation failed due to insufficient memory"

If the memory is less than 1.5G,Need to create virtual memory

#154 TheRookie

TheRookie

    Newbie

  • Advanced user
  • 150 posts
  • Location:in your mind
  • Interests:computers: (repairing, administration), reading: (technological info), outing: (having a good time), music (electronic, house, instrumental...) and hiking
  •  
    South Africa

Posted 20 December 2010 - 04:28 PM

Hi Xuantian,

thanks much for that info, I was able to successfully update the wim file and add the update you made.
:ph34r:

Just a small problem:
I found that when running MS DART in your PE it doesn't find any drive where windows is installed?
But strangely, I can access the drives of the hard disk where windows is installed by using explorer as an example
Is there something that needs to be changed in order for it to work?

I don't know if you missed my other question, concerning the autostartup of applications?
Basicly, this application is just an .exe which I would like to have started up automaticly when the PE boots up.

To Wimb or
Chris, if you guys happen to read this, is it possible to have an application autostartup in either MakePE3 or Win7PE-SE?

I know I was able to accomplish this with liveXP by using the quick-script.

Sorry for going off-topic here.
:unsure:

Regards,

#155 likhi

likhi
  • Members
  • 4 posts
  •  
    India

Posted 21 December 2010 - 01:50 AM

Hi Xuantian,

thanks much for that info, I was able to successfully update the wim file and add the update you made.
:)

Just a small problem:
I found that when running MS DART in your PE it doesn't find any drive where windows is installed?
But strangely, I can access the drives of the hard disk where windows is installed by using explorer as an example
Is there something that needs to be changed in order for it to work?

I don't know if you missed my other question, concerning the autostartup of applications?
Basicly, this application is just an .exe which I would like to have started up automaticly when the PE boots up.

To Wimb or
Chris, if you guys happen to read this, is it possible to have an application autostartup in either MakePE3 or Win7PE-SE?

I know I was able to accomplish this with liveXP by using the quick-script.

Sorry for going off-topic here.
:(

Regards,


add your exe file to system32 and include it in winpeshl.ini. Use dism or xuantian pe3diy to customise the wim file,

then update iso file

OR you can boot the wim file directly from bootmgr of windows7, use easybcd2 to edit/add boot entries to bcd file.

#156 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 21 December 2010 - 01:56 AM

Hi Xuantian,

thanks much for that info, I was able to successfully update the wim file and add the update you made.
:)

Just a small problem:
I found that when running MS DART in your PE it doesn't find any drive where windows is installed?
But strangely, I can access the drives of the hard disk where windows is installed by using explorer as an example
Is there something that needs to be changed in order for it to work?

I don't know if you missed my other question, concerning the autostartup of applications?
Basicly, this application is just an .exe which I would like to have started up automaticly when the PE boots up.

To Wimb or
Chris, if you guys happen to read this, is it possible to have an application autostartup in either MakePE3 or Win7PE-SE?

I know I was able to accomplish this with liveXP by using the quick-script.

Sorry for going off-topic here.
:(

Regards,

msdart Direct boot will be like you,first need run sources\recovery\RecEnv.exe Be able to find windows install
autorun can in pe3ext.ini / Comm.ini add Add a line,
Example:
in Comm.ini
EXEC %PECMN%\PDF-X-Viewer.exe
EXEC C:\abc\123.exe

in pe3ext.ini
_SUB pe3ext
EXEC d:\www\cds.chm
load f:\de\321.txt

#157 wimb

wimb

    Gold Member

  • Developer
  • 1,880 posts
  •  
    Netherlands

Posted 22 December 2010 - 05:47 PM

In PE-Tools there is a nice feature win7drv.cmd which should install drivers from Windows 7 Host folder DriverStore\FileRepository
The magnifying glass Icon on the Desktop is used to run win7drv.cmd
Unfortunately it does NOT work yet because there are some (typo) errors in the code.

win7drv.cmd now reads
for %%i in (C D E F G H I J K L M N) do (if exist %%i:\Windows\system32\driverstore\filerepository start /b "cmd /c pecmd devi%%i:\Windows\system32\driverstore\filerepository\*inf)


whereas it should be
for %%i in (C D E F G H I J K L M N) do (if exist %%i:\Windows\system32\driverstore\filerepository start /b cmd /c pecmd devi %%i:\Windows\system32\driverstore\filerepository\*inf)


After removal of the double quote and insert of space between devi and %%i it is working as expected.
Now this is a wondefull tool, since required drivers for 7 PE are always present in DriverStore\Repository folder of 32-bits Windows 7 host

To further limit the search for only 32-bits host, I changed win7drv.cmd somewhat more for my purpose to:

win7drv.cmd

TITLE win7drv.cmd - Install of Drivers in PE3 - Wait ....

@ECHO OFF

CLS



SETLOCAL ENABLEEXTENSIONS

SETLOCAL ENABLEDELAYEDEXPANSION



ECHO.

ECHO  Install of Drivers using pecmd.exe and host driverstore\filerepository

ECHO.





for %%i in (C D E F G H I J K L M N) do (

  IF NOT EXIST "%%i:\Windows\SysWow64" (

    if exist "%%i:\Windows\system32\driverstore\filerepository" (

      ECHO  Found %%i:\Windows\system32\driverstore\filerepository

      start /b cmd /c pecmd devi %%i:\Windows\system32\driverstore\filerepository\*inf

    )

  )

)

ECHO.

ECHO  pecmd.exe was launched to Install Drivers from host - Wait ....

ECHO.

ECHO  *** This window disappears when pecmd.exe has finished ***

ECHO.



:: pause

EXIT






A very nice way to add fast your missing drivers in portable Windows 7 PE in case there is a 32-bits Windows 7 host present.
For some drivers e.g. USB 3.0 it is needed to run win7drv.cmd twice to install the driver. :thumbsup:


:cheers:

#158 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 23 December 2010 - 03:27 AM

In PE-Tools there is a nice feature win7drv.cmd which should install drivers from Windows 7 Host folder DriverStore\FileRepository
The magnifying glass Icon on the Desktop is used to run win7drv.cmd
Unfortunately it does NOT work yet because there are some (typo) errors in the code.

win7drv.cmd now reads

for %%i in (C D E F G H I J K L M N) do (if exist %%i:\Windows\system32\driverstore\filerepository start /b "cmd /c pecmd devi%%i:\Windows\system32\driverstore\filerepository\*inf)

tanks
I have not tested this CMD.
The new version or some of the problems,Also need to add:
WLanConn.dll(mui), WLanapi.dll
Modify pecmd.ini to:

////////////////////////////////////////////////////////////////////////////////////////////////

_SUB OSInit

     DISP W1024 H768 B32 F60

     LOGO %CurDir%\winpe.jpg

     DEVI %WinDir%\inf\usb.inf

     DEVI %WinDir%\inf\usbport.inf

     CALL $%WinDir%\System32\wmpshell.dll

     EXEC winpeshl

     INIT I

_END

////////////////////////////////////////////////////////////////////////////////////////////////

_SUB LoadShell

     HOTK #95,PECMD.EXE SHUT R  //Sleep key to restart

     EXEC !%ProgramFiles%\ResTools\LoveString.exe



     PINT %ProgramFiles%\DiskGenius\DiskGenius.exe,StartMenu

     PINT X:\sources\recovery\RecEnv.exe,StartMenu

     PINT %SystemRoot%\System32\calc.exe,StartMenu

     PINT %SystemRoot%\System32\mstsc.exe,StartMenu

     PINT %SystemRoot%\System32\mspaint.exe,StartMenu

     PINT %SystemRoot%\System32\Depends.exe,StartMenu

     PINT %SystemRoot%\System32\RegWorkshop.exe,StartMenu



     PINT %ProgramFiles%\Internet Explorer\iexplore.exe,TaskBand

     PINT %ProgramFiles%\WinWAP\WinWAP4.exe,TaskBand

     PINT %ProgramFiles%\Windows Media Player\wmplayer.exe,TaskBand

     PINT X:\sources\recovery\RecEnv.exe,TaskBand

     PINT %SystemRoot%\System32\FSeeker.exe,TaskBand

     PINT %SystemRoot%\System32\FSCapture.exe,TaskBand

     PINT %SystemRoot%\explorer.exe,TaskBand



     REGI HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinPE\SkipWaitForNetwork=#1

     REGI HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Audit\!

     REGI HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.cab\!

     TEAM EXEC UX|SHEL %SystemRoot%\explorer.exe

     LOGO

     SHOW -1:-1

     CALL $%WinDir%\System32\SysFxUI.dll

     CALL $%WinDir%\System32\wmp.dll

     CALL $inetcomm.dll

     CALL $%WinDir%\System32\Macromed\Flash\Flash10l.ocx

     EXEC @!=netcfg.exe -winpe

     EXEC @!=netcfg -e -c p -i MS_NDISUIO

     EXEC @!=netcfg.exe -c s -i ms_vwifi

     EXEC @!=netcfg.exe -c s -i ms_nativewifip

     EXEC @!=netcfg.exe -e -c p -i MS_PPPOE

     EXEC @!=netcfg.exe -e -c p -i MS_NDISWAN

     EXEC @!=netcfg.exe -c s -i MS_Server

     REGI HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinPE\SkipWaitForNetwork=#1

     SERV Spooler

     SERV Wlansvc

     SERV Schedule

     SERV Schedule

     //SERV SysMain

     //SERV FontCache

     LINK %Desktop%\Broadband (PPPOE),%ProgramData%\Microsoft\Network\Connections\Pbk\rasphone.pbk,,%WinDir%\System32\rasdlg.dll#20,Start a broadband connection.

     EXEC X:\

     //EXEC "%ProgramFiles%\PENetwork\PENetwork.exe"

     EXEC PETSET.EXE

_END

////////////////////////////////////////////////////////////////////////////////////////////////

_SUB Loadext

     TEAM LOAD Z:\PE-Tools\pe3ext.ini|LOAD Y:\PE-Tools\pe3ext.ini|LOAD X:\PE-Tools\pe3ext.ini|LOAD W:\PE-Tools\pe3ext.ini|LOAD V:\PE-Tools\pe3ext.ini|LOAD U:\PE-Tools\pe3ext.ini|LOAD T:\PE-Tools\pe3ext.ini|LOAD S:\PE-Tools\pe3ext.ini|LOAD R:\PE-Tools\pe3ext.ini|LOAD Q:\PE-Tools\pe3ext.ini|LOAD P:\PE-Tools\pe3ext.ini|LOAD O:\PE-Tools\pe3ext.ini|LOAD N:\PE-Tools\pe3ext.ini|LOAD M:\PE-Tools\pe3ext.ini|LOAD L:\PE-Tools\pe3ext.ini|LOAD K:\PE-Tools\pe3ext.ini|LOAD J:\PE-Tools\pe3ext.ini|LOAD I:\PE-Tools\pe3ext.ini|LOAD H:\PE-Tools\pe3ext.ini|LOAD G:\PE-Tools\pe3ext.ini|LOAD F:\PE-Tools\pe3ext.ini|LOAD E:\PE-Tools\pe3ext.ini|LOAD D:\PE-Tools\pe3ext.ini|LOAD C:\PE-Tools\pe3ext.ini

_END

/////////////////////////////////////////////////////////////////////////////////////////////////

_SUB complete

     TEAM KILL explorer.exe

     EXEC "%ProgramFiles%\media\install.EXE"

     EXEC "X:\Program Files\Windows Sidebar\sidebar.exe" /autoRun

     DEVI %WinDir%\inf\machine.inf

     DEVI %WinDir%\inf\monitor.inf

     DEVI %WinDir%\inf\cpu.inf

     DEVI %WinDir%\inf\fdc.inf

     DEVI %WinDir%\inf\mshdc.inf

     DEVI %WinDir%\inf\cdrom.inf

     DEVI %WinDir%\inf\msports.inf

     DEVI %WinDir%\inf\ramdisk.inf

     DEVI %WinDir%\inf\acpi.inf

     DEVI %WinDir%\inf\hal.inf

     EXEC %windir%\system32\PWRISOVM.EXE

_END

////////////////////////////////////////////////////////////////////////////////////

CALL OSInit

CALL LoadShell

CALL Loadext

CALL complete

///////////////////////////////////////////////////////////////////////////////


Edited by xuantian, 23 December 2010 - 03:32 AM.


#159 Wasif

Wasif

    Newbie

  • Members
  • 25 posts
  •  
    Pakistan

Posted 23 December 2010 - 09:17 AM

@xaintain
can u make win xp pe version with all drivers support?

#160 Aye Htay

Aye Htay

    Frequent Member

  • Advanced user
  • 163 posts
  •  
    Myanmar

Posted 23 December 2010 - 01:09 PM

@Wasif

I think you are requesting too much from xuantian. His ISO files are not for personal/commercial use just for referrence to develope our own projects. You can learn so many projects for xp/2k3 version here "e.g. LiveXP" for your own use.

ah

#161 wimb

wimb

    Gold Member

  • Developer
  • 1,880 posts
  •  
    Netherlands

Posted 27 December 2010 - 03:34 PM

@xuantian
@amalux


I am looking for a way to have Restart and Shut down button in explorer shell working without using Reboot.dll
In both of your ISO's these buttons are working.
Can you give some info on what registry settings and extra files are needed to make this happen ?

Thanks for your help.

:)

#162 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 28 December 2010 - 04:21 AM

@xuantian
@amalux


I am looking for a way to have Restart and Shut down button in explorer shell working without using Reboot.dll
In both of your ISO's these buttons are working.
Can you give some info on what registry settings and extra files are needed to make this happen ?

Thanks for your help.

:dubbio:

No additional files,Done 1 year ago,At present, some forgotten,May be:
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\{BBD8C065-5E6C-4e88-BFD7-BE3E6D1C063B}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{025A5937-A6BE-4686-A844-36FE4BEC8B6D}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{3DD82D10-E6F1-11D2-B139-00105A1F77A1}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{A158544D-66FA-4F19-8806-F3CA2E2A4C52}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{BBD8C065-5E6C-4e88-BFD7-BE3E6D1C063B}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{F0285374-DFF1-11D3-B433-00C04F8ECD78}
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ConsolePower.ConsolePower
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ConsolePower.ConsolePower.1
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DeviceDisplayObject\InterfaceClass\{70FFD812-4C7F-4C7D-926A-637B7DD852AF}\Shell\PowerOptions
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DisplayServer.Power
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DisplayServer.Power.1
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WBEM\Transports\Decoupled\Client\{0126029C-5E18-493B-A0B9-FDB5B9DD160C}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WBEM\Transports\Decoupled\Client\{8DB34918-0BC9-4491-B4B8-E0B08AC2E088}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Media Foundation\Platform\EVR\{16260968-C914-4aa1-8736-B7A6F3C5AE9B}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping\win.ini\Windows (LowPowerActive, LowPowerTimeOut)?
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\_V2Providers\{74800676-866f-4bbd-8680-dac6a6fb6c8e}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\GPExtensions\{E62688F0-25FD-4c90-BFF5-F508B9D2E31F}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Cpls\powercfg.cpl
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Controls Folder\PowerCfg
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{025A5937-A6BE-4686-A844-36FE4BEC8B6D}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Power
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Publishers\{0f67e49f-fe51-4e9f-b490-6f2948cc6027}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Publishers\{331c3b3a-2005-44c2-ac5e-77220c37d6b4}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Publishers\{9f0c4ea8-ec01-4200-a00d-b9701cbea5d8}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Publishers\{e7ef96be-969f-414f-97d7-3ddb7b558ccc}\ChannelReferences\2
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Power
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SafeBoot\Minimal\Power
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Power
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\eventlog\Application\Group Policy Power Options
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\eventlog\System\Microsoft-Windows-Kernel-Power
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\eventlog\System\Microsoft-Windows-Kernel-Processor-Power
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\eventlog\System\Power

#163 Aye Htay

Aye Htay

    Frequent Member

  • Advanced user
  • 163 posts
  •  
    Myanmar

Posted 28 December 2010 - 12:40 PM

...

Thanks for your reg keys.
But for me, removed reboot.dll and nothing effect to my pe.
Reboot and Logoff buttons are going to reboot option.
Shutdown button is going to Shutdown option.
Nothing added and just removed reboot.dll.

@xuantian
Added your Search registry keys but error with search=query database not found. I think need some files.
Tested your pe, search option is ok.

Tested Wimb's driver install cmd (from %%i C D E....).
Completely working. :dubbio: Thanks.

ah

#164 wimb

wimb

    Gold Member

  • Developer
  • 1,880 posts
  •  
    Netherlands

Posted 28 December 2010 - 04:37 PM

Nothing added and just removed reboot.dll.

I found that adding and using PECMD to launch explorer shell, gives working Restart and Shut down button
so that Reboot.dll is not needed and can be removed.

So it seems indeed that there are no extra registry fixes needed to make it happen ....

;)

#165 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 29 December 2010 - 02:06 AM

Thanks for your reg keys.
But for me, removed reboot.dll and nothing effect to my pe.
Reboot and Logoff buttons are going to reboot option.
Shutdown button is going to Shutdown option.
Nothing added and just removed reboot.dll.

@xuantian
Added your Search registry keys but error with search=query database not found. I think need some files.
Tested your pe, search option is ok.

Tested Wimb's driver install cmd (from %%i C D E....).
Completely working. ;) Thanks.

ah

Search for the required documentation in the registration data. . .Documents of different languages have different needs

#166 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 29 December 2010 - 02:11 AM

I found that adding and using PECMD to launch explorer shell, gives working Restart and Shut down button
so that Reboot.dll is not needed and can be removed.

So it seems indeed that there are no extra registry fixes needed to make it happen ....

;)

PECMD shutdown button does not activate the system, But can be up shutdown and restart hotkey

#167 MedEvil

MedEvil

    Platinum Member

  • .script developer
  • 7,689 posts

Posted 01 January 2011 - 01:01 PM

xuantian, you post on xtbeta.com an image from the 2010-12-17 and an update from 2010-12-19.
What exactly am i to do with that update?

:cheers:

#168 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 01 January 2011 - 01:05 PM

xuantian, you post on xtbeta.com an image from the 2010-12-17 and an update from 2010-12-19.
What exactly am i to do with that update?

:cheers:

Xuantian-PE3DIY.rar Is updated (DIY) Tools:)

#169 MedEvil

MedEvil

    Platinum Member

  • .script developer
  • 7,689 posts

Posted 01 January 2011 - 01:53 PM

I was referring to this:

2010-12-19 update xxxx://www.mediafire.com/?igioqb97i72y7p2
1. fixed .flv and .mov play
2. Fixed some registry data
3. Completion dos 16 bit file.
4. Improve the Network Connection Wizard and Wireless Network Management
5. Attempt to join the Mobility Center


It seems to be an update to the image and not DIY Tools. Am i wrong?

:cheers:

#170 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 02 January 2011 - 01:38 AM

I was referring to this:


It seems to be an update to the image and not DIY Tools. Am i wrong?

:thumbsup:

Previously downloaded to include the PE core, external and DIY tools,Unless you did not download before, Otherwise impossible to see:)

#171 wimb

wimb

    Gold Member

  • Developer
  • 1,880 posts
  •  
    Netherlands

Posted 07 January 2011 - 01:39 PM

I would like to use PECMD for Install of device drivers from nested folder structure
like in extracted wnt6-x86 DriverPacks.

Until now I fail to let PECMD recurse though nested folder structure for install of drivers.
I can only use PECMD DEVI for install of driver from unnested folder.

Is there a switch for PECMD DEVI which makes it recurse though nested folder structure ?

#172 ludovici

ludovici

    Silver Member

  • .script developer
  • 609 posts
  • Location:France
  •  
    France

Posted 07 January 2011 - 04:32 PM

Hello everybody :)
Xuantian, how can we to have administrator account in winpe ?
I have seen the profilelist, profileloader registry but i haven't find solution...
Can you explain how work pecmd with device drivers (with and without cab files...) ?

#173 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 10 January 2011 - 01:53 AM

I would like to use PECMD for Install of device drivers from nested folder structure
like in extracted wnt6-x86 DriverPacks.

Until now I fail to let PECMD recurse though nested folder structure for install of drivers.
I can only use PECMD DEVI for install of driver from unnested folder.

Is there a switch for PECMD DEVI which makes it recurse though nested folder structure ?

In the PE in Load the driver using the drvload.exe, then \Windows\System32\DriverStore\FileRepository Extract more reliable,Extract the driver package using pecab.exe.
pecab.exe will sort the files and directory structure In order to quickly search and installation of equipment, DEVI No other nested command,But the installation. cab driven First unpack the. inf hardware ID match (for NT6),If the hardware ID match Then unpack the driver to install the corresponding,For non-cab driver package not match the hardware ID.

#174 xuantian

xuantian

    Member

  • Members
  • 89 posts
  •  
    China

Posted 10 January 2011 - 02:00 AM

Hello everybody :huh:
Xuantian, how can we to have administrator account in winpe ?
I have seen the profilelist, profileloader registry but i haven't find solution...
Can you explain how work pecmd with device drivers (with and without cab files...) ?

PE can indeed use the administrator account login,But there will be a lot of restrictions,And the capacity will be much larger.
pe-tools\PE3EXT.INI:
_SUB pe3ext
//TEAM DEVI $.\PE3\DRV3\WNIC.CAB,,%DT%|FILE %DT% //Automatically install the NIC driver(Note that without the implementation of the blue
)
TEAM DEVI $.\PE3\VCARD.CAB,,%DT%|FILE %DT% //Automatically install the graphics driver
TEAM DEVI $.\PE3\ACARD.CAB,,%DT%|FILE %DT% //Automatically install the sound card driver
LINK %Desktop%\Search Win7 system drive,%CurDir%\PE3\win7drv.cmd,,%CurDir%\Icons\recherche.ico,Search Win7 system built-in driver
_END
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
IFEX MEM>1500,ENVI DT=C:\DRVTEMP!ENVI DT=%SystemRoot%\TEMP //Memory < 1.5G set %DrvTemp% to C:\DRVTEMP
ENVI $extpath=%CurDir% //The external path into the system variable
LOAD Comm.ini //Loading external app links
CALL pe3ext //Executive pe3ext content
LOAD E:\Tools\pe3.ini //Load current computer settings
///////////////////////////////////////////////////////////////////////////////////////////////////////////////

#175 wimb

wimb

    Gold Member

  • Developer
  • 1,880 posts
  •  
    Netherlands

Posted 10 January 2011 - 07:03 AM

In the PE in Load the driver using the drvload.exe, then \Windows\System32\DriverStore\FileRepository Extract more reliable,Extract the driver package using pecab.exe.
pecab.exe will sort the files and directory structure In order to quickly search and installation of equipment, DEVI No other nested command,But the installation. cab driven First unpack the. inf hardware ID match (for NT6),If the hardware ID match Then unpack the driver to install the corresponding,For non-cab driver package not match the hardware ID.

Thanks xuantian

That means we have got to use unnested cab driver packages like you did
and that we can not use pecmd with the extracted nt6-x86 DriverPacks which have nested folders.




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users