Página 1 de 1

[RESUELTO] El despliegue de WADS no es automático

Publicado: 15 de junio de 2026 - 09:28
por tdbrm
Servidor WAPT 2.6.1.17813, Edición Enterprise.

Hola,

estoy experimentando un problema con las implementaciones de WADS.
En algunos de nuestros equipos, la implementación se completa automáticamente de principio a fin una vez que se agrega la configuración a la consola de WAPT. Sin embargo, en otros modelos de equipo, la configuración se detiene después de extraer/leer la ISO y aparece una ventana que solicita una imagen de Windows 11 (Pro, Home, etc.).
Aun así, se está utilizando el mismo XML de configuración. Me preguntaba si este es un problema conocido. He buscado en el foro y en la documentación, pero no he encontrado nada al respecto.

¡Gracias de antemano!

Re: El despliegue de WADS no es automático

Publicado: 15 de junio de 2026 - 14:04
por sfonteneau
Buen día

En la documentación interna (aún no pública), agregué lo siguiente:

Código: Seleccionar todo

Selecting the Windows edition from the ISO
------------------------------------------

When an ISO contains several Windows editions, the edition to install is selected in the XML answer file with the ``InstallFrom`` metadata block.

For example, the following configuration selects the ``Professional`` edition:

.. code-block:: xml

  <InstallFrom>
      <MetaData>
          <Key>/IMAGE/FLAGS</Key>
          <Value>Professional</Value>
      </MetaData>
  </InstallFrom>

The ``Key`` defines which image metadata is used to select the Windows image, and the ``Value`` defines the expected value for the selected image.

In this example, Windows Setup searches the image contained in the ISO whose ``/IMAGE/FLAGS`` value is ``Professional``.

Selecting the edition by image index
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

It is also possible to select the Windows edition by using the image index from the ``install.wim`` or ``install.esd`` file.

Before running ``DISM``, the Windows ISO must first be extracted or mounted in order to access the image file located in the ``sources`` directory.

For example, after extracting the ISO, you can list the available images with the following command:

.. code-block:: bat

  DISM /Get-WimInfo /WimFile:"C:\tranquilit\Win11_25H2_French_x64\sources\install.wim"

Example output:

.. code-block:: text

  Index : 6
  Nom : Windows 11 Professionnel
  Description : Windows 11 Professionnel

In this example, ``Windows 11 Professionnel`` corresponds to index ``6``.

The XML answer file can therefore select this image with ``/IMAGE/INDEX``:

.. code-block:: xml

  <InstallFrom>
      <MetaData>
          <Key>/IMAGE/INDEX</Key>
          <Value>6</Value>
      </MetaData>
  </InstallFrom>

Windows Setup will then install image index ``6`` from the ``install.wim`` file.

If the ISO contains an ``install.esd`` file instead of an ``install.wim`` file, adapt the command accordingly:

.. code-block:: bat

  DISM /Get-WimInfo /WimFile:"C:\tranquilit\Win11_25H2_French_x64\sources\install.esd"

Microsoft documentation for the ``InstallFrom`` metadata block is available here:

https://learn.microsoft.com/fr-fr/windows-hardware/customize/desktop/unattend/microsoft-windows-setup-imageinstall-dataimage-installfrom-metadata

.. note::

  The value configured in the XML answer file must match one of the images available in the ISO.
  The image indexes can differ depending on the ISO used, so they must be checked from the ``install.wim`` or ``install.esd`` file associated with the configuration.

¿Qué sucede si intentas modificar tu XML para ponerlo en modo /IMAGE/INDEX?

Re: El despliegue de WADS no es automático

Publicado: 15 de junio de 2026 - 14:25
por tdbrm
Hola, ¡

funciona perfectamente! Había visto la información en internet, pero había dejado la clave desactivada y por eso no funcionaba... ¡

Gracias!

Re: [RESUELTO] El despliegue de WADS no es automático

Publicado: 15 de junio de 2026 - 15:42
por sfonteneau
Acabo de actualizar la documentación en línea:

https://www.wapt.fr/fr/doc/wapt-wads.ht ... mage-index