07-26-2023, 06:11 PM
(This post was last modified: 07-26-2023, 06:43 PM by AlexBryansk.)
for rahaaatul:
The latest version of ventoy is 1.0.94, mod_ventoy 1.0.93.
You can hide information about the Ventoy version, but I won't do it. I think it's more convenient this way.
Automatic alignment of "tip" in the ventoy file.json->menu_tip->align
for AssGuard:
Not automatically. But the contents of the file can be autounattended.xml put it in the *.txt file (mod_ventoy supports txt files) or from the autounattended content.xml to make a "tip" for example:
Remove all quotes " and insert the tilde ~ as a forced line break.
In ventoy.json will turn out:
The result is on the directory "/ISO/multiboot" (and you will do it on the image file):
The latest version of ventoy is 1.0.94, mod_ventoy 1.0.93.
You can hide information about the Ventoy version, but I won't do it. I think it's more convenient this way.
Automatic alignment of "tip" in the ventoy file.json->menu_tip->align
for AssGuard:
Not automatically. But the contents of the file can be autounattended.xml put it in the *.txt file (mod_ventoy supports txt files) or from the autounattended content.xml to make a "tip" for example:
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>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
</UserData>
</component>
</settings>
</unattend>
Remove all quotes " and insert the tilde ~ as a forced line break.
In ventoy.json will turn out:
Code:
{
"dir": "/ISO/multiboot",
"tip": "<?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>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</Key><WillShowUI>OnError</WillShowUI>~</ProductKey>~</UserData>~</component>~</settings>~</unattend>"
},
The result is on the directory "/ISO/multiboot" (and you will do it on the image file):