[RESOLVED] tis-check-windows-eol - audit error requesting a report

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
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
b.ald
Messages: 18
Registration: Oct 04, 2025 - 10:59 p.m.

April 22, 2026 - 8:47 PM

Good morning,

This package returns an error for some machines.
As explicitly requested, here are the audit results:

Code: Select all

Auditing zth-check-windows-eol
[ERROR] No matching product found. Please create a support report with the following information:

{
  "product_name": "Windows 11 Pro",
  "edition_id": "Professional",
  "windows_ver_prettyname": "25H2",
  "csd_version": null,
  "windows_version": "10.0.26200",
  "is_windows_client": true,
  "esu_licenses": []
}
Audit aborted due to exception: too many values to unpack (expected 2)
Regards,
Bastien
WAPT Enterprise -- 2.6.1.17765 -- SRV Ubuntu 24.04 arm64
WAPT Enterprise -- 2.6.1.17705 -- SRV Ubuntu 22.04
WAPT Enterprise -- 2.6.1.17705 -- SRV RHEL 9 --//-- Secondary repositories -- Rocky 9
Admin: W11pro
b.ald
Messages: 18
Registration: Oct 04, 2025 - 10:59 p.m.

April 24, 2026 - 8:11 PM

Good morning,

I looked into it a bit and it's actually because the 25H2 is not in the JSON file, so I guess it's normal as long as it's not there.

And for:

Code: Select all

Audit aborted due to exception: too many values to unpack (expected 2)
In the "class WindowsEOLChecker" line, at the very end, I added a second argument, "None", to the "return" statement:

Code: Select all

        else:
            print("[ERROR] No matching product found. Please create a support report with the following information:\n")
            print(json.dumps(self.get_windows_report(), indent=2))
            return "ERROR", None
And the audit finishes correctly without crashing. But here's where I don't quite understand... because it shows "too many values" when there was only the > "ERROR" < (so why "too many values ​​returned...?")

Regards,
Bastien
WAPT Enterprise -- 2.6.1.17765 -- SRV Ubuntu 24.04 arm64
WAPT Enterprise -- 2.6.1.17705 -- SRV Ubuntu 22.04
WAPT Enterprise -- 2.6.1.17705 -- SRV RHEL 9 --//-- Secondary repositories -- Rocky 9
Admin: W11pro
fschelfaut
Messages: 30
Registration: Nov 7, 2024 - 12:22

April 27, 2026 - 10:07

Good morning,

I have fixed the following problem:

Code: Select all

Audit aborted due to exception: too many values to unpack (expected 2)
This error occurred after the end date was added to the audit data.

Regarding the absence of versions 25H2 and 26H1, this is due to Microsoft. Their API points are not being updated correctly, which has unfortunately become quite common and a running joke.

We use this link to export the information:
https://learn.microsoft.com/en-us/lifec...ts/export/

However, since the release of version 25H2, this link has not been updated. Recently, there was a change: the export was replaced by a manually generated Excel (XLSX) file, but this file is incomplete and contains only some of the necessary information.

It can also be noted that the French versions of the pages are not up to date:
https://learn.microsoft.com/fr-fr/lifec ... ranch=live
https://learn.microsoft.com/fr-fr/lifec ... ranch=live

Temporarily, I have disabled the update package and manually added versions 25H2 and 26H1 to the JSON file.
The package will be available today!

However, I don't want to maintain this file manually in the long term. It would be better if Microsoft fixed its API...

Flavien
b.ald
Messages: 18
Registration: Oct 04, 2025 - 10:59 p.m.

April 27, 2026 - 7:24 PM

Hi Flavien,

Thanks for the information and explanations.
We agree that this file shouldn't be maintained manually, :)
it's Microsoft after all...

I think the matter can be closed. Thanks again.

Best regards,
Bastien
WAPT Enterprise -- 2.6.1.17765 -- SRV Ubuntu 24.04 arm64
WAPT Enterprise -- 2.6.1.17705 -- SRV Ubuntu 22.04
WAPT Enterprise -- 2.6.1.17705 -- SRV RHEL 9 --//-- Secondary repositories -- Rocky 9
Admin: W11pro
Locked