Ventoy Forums

Full Version: 【Solved】Change Default selection on auto installation plugin?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to change the default highlighted selection for the auto installation plugin from the 1st auto install script to "boot without auto installation template"? Some times I need to use Windows installer for WinRE environment, and am always worried someday I might accidentally use wrong selection and accidentally lose someone's data.
Currently this is not supported. 
Maybe you can consider the following workaround.
offer another empty or invalid unattend.xml.

Code:
{
    "auto_install": [
        {
            "image": "/Windows10.iso",
            "template": [
                "/script/fake_unattend.xml",
                "/script/real_unattend.xml"
            ]           
        }
    ]
}

Now fake_unattend.xml will become the default highlighted selection.
(02-18-2021, 12:57 AM)longpanda Wrote: [ -> ]Currently this is not supported. 
Maybe you can consider the following workaround.
offer another empty or invalid unattend.xml.

Code:
{
    "auto_install": [
        {
            "image": "/Windows10.iso",
            "template": [
                "/script/fake_unattend.xml",
                "/script/real_unattend.xml"
            ]           
        }
    ]
}

Now fake_unattend.xml will become the default highlighted selection.
That would be fine, thank you for the suggestion!