The Oven

Project World => Win8.1 SE HomePage => Topic started by: 0scar on February 27, 2016, 12:04:45 AM

Title: PecmdExt.ini
Post by: 0scar on February 27, 2016, 12:04:45 AM
There is a PecmdExt.ini in the root of the Win8.1SE_x86.iso which apparently do nothing (created by ...Projects\Win8.1SE\Shell\0-Shell Loader.script).
What is it for?

PecmdExt.ini
Code: [Select]
CALL Keyboard
CALL ExtDrivers
CALL ExtPrograms

////////////////////////////////////////////////////////////////////////////////////////////////
_SUB Keyboard

// United State
//EXEC !%WinDir%\System32\Wpeutil.exe SetKeyboardLayout 0409:00000409
// French
//EXEC !%WinDir%\System32\Wpeutil.exe SetKeyboardLayout 040c:0000040c
// German
//EXEC !%WinDir%\System32\Wpeutil.exe SetKeyboardLayout 0407:00000407
// Portuguese Brazil
//EXEC !%WinDir%\System32\Wpeutil.exe SetKeyboardLayout 0416:00000416

_End
////////////////////////////////////////////////////////////////////////////////////////////////
_SUB ExtDrivers

//DEVI %WinDir%\inf\xxxxx.inf

_END
////////////////////////////////////////////////////////////////////////////////////////////////
_SUB ExtPrograms

// EXEC  = Wait, @background, ! Hide. ex: EXEC =WaitNoHide.cmd, EXEC @!=WaitHide.cmd, EXEC NoWaitNoHide.cmd, EXEC @!NoWaitHide.cmd

//EXEC Y:\Programs\Sysinternals_Process_Monitor\procmon.exe

_END
////////////////////////////////////////////////////////////////////////////////////////////////

Thanks
Title: Re: PecmdExt.ini
Post by: ChrisR on February 28, 2016, 12:52:13 AM
PecmdExt.ini is outside boot.wim (external).
It can thus be used easily, if needed (eg: to load external drivers), without the need to rebuild boot.wim. It is called by Pecmd.ini at startup, if it exist.
The syntax is for example
Title: Re: PecmdExt.ini
Post by: freeman on August 25, 2017, 12:31:22 PM
PecmdExt.ini is outside boot.wim (external).
It can thus be used easily, if needed (eg: to load external drivers), without the need to rebuild boot.wim. It is called by Pecmd.ini at startup, if it exist.
The syntax is for example
how to make windows use it at startup?
Title: Re: PecmdExt.ini
Post by: freeman on August 25, 2017, 01:02:20 PM
just to change keyboard layouts
Title: Re: PecmdExt.ini
Post by: freeman on August 25, 2017, 04:04:44 PM
no need to reply I found out the way