How to bypass the 'OS Edition Selection' page in a Windows unattended setup?

I've found a solution here

enter image description here

enter image description here

PS: Changed the value to Windows 8.1 and worked fine!


For Windows 10, I was unable to use /IMAGE/NAME and the string value Windows 10 Pro (for reasons unknown to me), as proposed in the answer by @ElektroStudios.

This is what I added to my AutoUnattend.xml under the OSImage tag, which worked for me:

<InstallFrom>
  <MetaData wcm:action="add">
    <Key>/image/index</Key>
    <Value>1</Value>
  </MetaData>
</InstallFrom>

This automatically selected the first option, as I have two options during an attended installation:

Windows 10 Pro   x64  10/30/2015
Windows 10 Home  x64  10/30/2015

Please note that /image/index and /image/name are case sensitive; in the case of Windows 10 Enterprise v1709:

<InstallFrom>
  <MetaData wcm:action="add">
    <Key>/IMAGE/INDEX</Key>
    <Value>3</Value>
  </MetaData>
</InstallFrom>

If you want to check what values you need, the imagex command-line tool that is part of the AIK (Deployment and Imaging Tools Environment) can be used.