[RESOLVED] WADS deployment not automatic

Questions about WAPT Server / Requests and help related to the WAPT server
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
tdbrm
Messages: 4
Registration: June 8, 2026 - 3:14 PM

June 15, 2026 - 09:28

WAPT Server 2.6.1.17813, Enterprise Edition.

Hello,

I'm encountering a problem with WADS deployments.
On some of our computers, the deployment completes automatically from start to finish once the configuration is added to the WAPT console. However, on other computer models, the configuration stops after the ISO is extracted/read, and a window appears asking for a Windows 11 image (Pro, Home, etc.).
Yet, the same configuration XML is being used. I was wondering if this is a known issue? I've searched the forum and the documentation but haven't found anything on this.

Thank you in advance!
Last edited by tdbrm on June 15, 2026 - 2:25 PM, edited 1 time.
User avatar
sfonteneau
WAPT Expert
Messages: 2342
Registered: July 10, 2014 - 11:52 PM
Contact :

June 15, 2026 - 2:04 PM

Good morning

In the internal documentation (not yet public), I added this:

Code: Select all

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.

Try modifying your XML to put it in /IMAGE/INDEX mode to see what happens?
tdbrm
Messages: 4
Registration: June 8, 2026 - 3:14 PM

June 15, 2026 - 2:25 PM

Hello,

it works perfectly! I had seen the information online but I had left the key flagged, and so it hadn't worked...

Thank you!
User avatar
sfonteneau
WAPT Expert
Messages: 2342
Registered: July 10, 2014 - 11:52 PM
Contact :

June 15, 2026 - 3:42 PM

I've just updated the online documentation:

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