Ventoy Forums
ei.cfg bypass ventoy - Printable Version

+- Ventoy Forums (https://forums.ventoy.net)
+-- Forum: Ventoy General Use —— Ventoy 使用交流 (https://forums.ventoy.net/forumdisplay.php?fid=1)
+--- Forum: Ventoy Discussion Forum (https://forums.ventoy.net/forumdisplay.php?fid=2)
+--- Thread: ei.cfg bypass ventoy (/showthread.php?tid=1991)



ei.cfg bypass ventoy - memo - 03-04-2022

Devices that have a key saved in the bios, there is no option to choose to editon.

Is it possible to inject ei.cfg while booting iso or another bypass??


RE: ei.cfg bypass ventoy - Steve2926 - 03-05-2022

use an XML file with an install-only product key as used in easy2boot


RE: ei.cfg bypass ventoy - memo - 03-05-2022

(03-05-2022, 07:09 PM)Steve2926 Wrote: use an XML file with an install-only product key as used in easy2boot

Halfway solution. I would like to have a edition selection during installation.


RE: ei.cfg bypass ventoy - crasadure - 03-05-2022

(03-04-2022, 07:55 PM)memo Wrote: Devices that have a key saved in the bios, there is no option to choose to editon.

Is it possible to inject ei.cfg while booting iso or another bypass??

firstly read this article  from ventoy web site : https://www.ventoy.net/en/plugin_injection.html

1. Put windows_injection.7z file to Ventoy first partition (for example : /ISO/windows_injection.7z )
2. Copy Win10/Win11 ISO file to ISO directory ( /ISO/Win10_x86_64.iso )
    windows_injection.7z and Win10_x86_x64.iso files must be same directory.
[Image: windows-injection.jpg]
3. Write necessary codes to ventoy.json file
[Image: ventoy-json.jpg]
"injection": [
        {
            "image": "/ISO/Win10_x86_x64.iso",
            "archive": "/ISO/windows_injection.7z"
        }
    ],


RE: ei.cfg bypass ventoy - Steve2926 - 03-05-2022

(03-05-2022, 09:34 PM)memo Wrote:
(03-05-2022, 07:09 PM)Steve2926 Wrote: use an XML file with an install-only product key as used in easy2boot

Halfway solution. I would like to have a edition selection during installation.

This can be done with an XML file. Just use an empty <key> line

Code:
<?xml version="1.0" encoding="utf-8" ?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">

<settings pass="windowsPE">


<component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<AcceptEula>true</AcceptEula>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>

<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserData>
<AcceptEula>true</AcceptEula>
<ProductKey>
<Key></Key>
</ProductKey>
</UserData>
</component>

</settings>
</unattend>



RE: ei.cfg bypass ventoy - memo - 03-07-2022

How do I activate the selection menu?

https://www.ventoy.net/static/img/autoinstall1.png

my ventoy.json:

https://i.imgur.com/21tXwsE.png
https://i.imgur.com/BhgigNR.png


RE: ei.cfg bypass ventoy - crasadure - 03-07-2022

(03-07-2022, 01:43 PM)memo Wrote: How do I activate the selection menu?

https://www.ventoy.net/static/img/autoinstall1.png

my ventoy.json:

https://i.imgur.com/21tXwsE.png
https://i.imgur.com/BhgigNR.png

You can find necessary information from this link : https://www.ventoy.net/en/plugin_autoinstall.html


RE: ei.cfg bypass ventoy - longpanda - 03-07-2022

(03-07-2022, 01:43 PM)memo Wrote: How do I activate the selection menu?

https://www.ventoy.net/static/img/autoinstall1.png

my ventoy.json:

https://i.imgur.com/21tXwsE.png
https://i.imgur.com/BhgigNR.png

Use VentoyPlugson to generate the ventoy.json file.
https://www.ventoy.net/en/plugin_plugson.html


RE: ei.cfg bypass ventoy - memo - 03-07-2022

Works great. Thanks.