The search returned 22 results

by Jarnaud
August 13, 2026 - 09:53
Forum: WAPT Packages
Subject: files corrupted, SHA not matching
Answers: 18
Views : 62646

Re: files corrupted, SHA not matching

Hello,

the message indicates a SHA not matching error. Could you compare the SHA of the package on the machine with the error and the SHA of the same package on a machine without the error?

On Windows machines, you can check the SHA of the MSI file using PowerShell: `

Get-FileHash .\filename.msi -Algorithm SHA256 | Format-List ...`
by Jarnaud
August 12, 2026 - 10:59
Forum: Reporting - SQL Queries
Subject: [SOLVED] Create a query
Answers: 5
Views : 117616

Re: Create a query

Yes, a query displays results at a specific point in time (its execution).
If machines update Cortex to a version higher than 9 in the meantime, then those updates will no longer be displayed in the query results.

Best regards.
by Jarnaud
August 12, 2026 - 09:23
Forum: Reporting - SQL Queries
Subject: [SOLVED] Create a query
Answers: 5
Views : 117616

Re: Create a query

This means that an index (a position) in a tuple (or list) does not exist.
Try again with this query:


SELECT hostsoftwares.version,
hostsoftwares.name,
hosts.computer_name,
hostsoftwares.host_id
FROM hosts, hostsoftwares
WHERE hostsoftwares.name ILIKE 'Cortex%%'
AND hosts ...
by Jarnaud
August 11, 2026 - 4:20 PM
Forum: Reporting - SQL Queries
Subject: [SOLVED] Create a query
Answers: 5
Views : 117616

Re: Create a query

Hello,

No problem, here's how:

1. Create the query

In the WAPT console, go to Reporting → Design Mode → New Query. This adds an empty query that you can then edit and rename (F2 key).

2. The SQL query

Using the example "Listing hosts with ...
by Jarnaud
July 30, 2026 - 3:37 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [RESOLVED] Adding a column to the main display
Answers: 4
Views : 20335

Re: [SOLVED] Adding a column to the main display

Hello,

I'm adding the link to our documentation to help our clients who might also be taking a well-deserved vacation ^^

You can find it here: https://www.wapt.fr/fr/doc/wapt-console ... ware-names

Best regards
by Jarnaud
April 28, 2026 - 09:38
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Bone Deployment Problem
Answers: 4
Views : 10188

Re: Bone deployment problem

Hello,

Is the waptagent.exe binary present in your Wapt server's web interface?
Is it the same version as the watpsetup.exe binary?

You could also check this forum; the problem seems quite similar.
viewtopic.php?t=4368

Best regards
by Jarnaud
April 22, 2026 - 2:55 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Inventory problem in Wapt
Answers: 3
Views : 10082

Re: Inventory problem in Wapt

Hello,

Yes, indeed, the message indicates that the certificate you are currently using in your console is not recognized by the machine.
You can view the certificate currently used by your console by going to Tools > Preferences and looking at the line...
by Jarnaud
March 10, 2026 - 10:32
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Audit result report for package tis-verif-secureboot-uefi-ca-2023
Answers: 2
Views : 15693

Re: Audit result report for package tis-verif-secureboot-uefi-ca-2023

Hello,

the "tis-verif-secureboot-uefi-ca-2023" package, once installed on a machine, generates specific audit data.
You can drag and drop this data into your inventory columns to view and sort a large number of machines.

You can use this...
by Jarnaud
December 8, 2025 - 3:21 PM
Forum: Reporting - SQL Queries
Subject: Reporting position with the following dependency
Answers: 1
Views : 61219

Re: Reporting position with dependency

Good morning,

Can you try this query?

Code: Select all

SELECT DISTINCT
    h.computer_name AS hostname
FROM
    hosts h
JOIN
    hostpackagesstatus hp ON h.uuid = hp.host_id
WHERE
    'PAQUET-YYY' = ANY(hp.depends);
Does this answer your question?

Yours sincerely