Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ei.cfg bypass ventoy
#1
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??
Reply
#2
use an XML file with an install-only product key as used in easy2boot
Reply
#3
(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.
Reply
#4
(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"
        }
    ],
Reply
#5
(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>
Reply
#6
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
Reply
#7
(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
Reply
#8
(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
Reply
#9
Works great. Thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)