WinPE hotkey

Discussion in 'Windows 10' started by sebus, Jan 30, 2016.

  1. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,356
    2,026
    210
    Anybod knows a console application (no GUI) in 64-bit version that runs in WinPE & provides configurable hotkeys?

    I basically need to invoke command prompt while running WinPE with shell that does not allow any input

    Thanks

    sebus
     
  2. Flipp3r

    Flipp3r MDL Expert

    Feb 11, 2009
    1,964
    907
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. CEW

    CEW MDL Senior Member

    Jan 21, 2011
    296
    155
    10
    #4 CEW, Jan 31, 2016
    Last edited by a moderator: Apr 20, 2017
    Not sure what you want, exactly, you could try pecmd, set it up like this ( all in pe windows\system32 )

    winpeshl.ini:

    Code:
    [LaunchApps]
    "Pecmd.exe Main %SystemDrive%\Windows\System32\Pecmd.ini"
    Example - pecmd.ini:

    Code:
    ////////////////////////////////////////////////////////////////////////////////////////////////
    _SUB OSD
        DISP W1024 H768 B32 F60
        TEXT WELCOME... L420 T360 R740 B400 $24
        HOTK Ctrl + Alt + e,PECMD.EXE KILL RecEnv.exe
        HOTK Ctrl + Alt + r,X:\sources\recovery\RecEnv.exe  
        INIT IU
        EXEC wpeinit.exe
        SHOW -1:-1
        LINK %Desktop%\Backupper,x:\Program Files\Aomei\Backupper.exe
        LINK %StartMenu%\Install\WinNtSetup,x:\Program Files\WinNTSetup_x64.exe
        PINT %SystemRoot%\regedit.exe
        PINT %SystemRoot%\system32\cmd.exe,Taskband
     _END
    ////////////////////////////////////////////////////////////////////////////////////////////////
    _SUB FINSET
         TEXT Loading Desktop... L430 T30 R740 B400 $24*
         WAIT 300
         SHEL %SystemRoot%\explorer.exe
         SERV MpsSvc
         WAIT 300
         DEVI %WinDir%\inf\hdaudio.inf
         EXEC %programfiles%\penetwork\penetwork.exe
    _END
    ////////////////////////////////////////////////////////////////////////////////////////////////
    CALL OSD
    CALL FINSET