The search returned 6 results

by psgca85
March 17, 2025 - 10:59
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Request to display dmi audit data
Answers: 5
Views : 30387

Re: [RESOLVED] Request to display dmi audit data

Hello Denis,

Below is my request to find the TPM version.

WITH cte AS (
SELECT ctid,
host_id,
row_number() OVER (PARTITION BY host_id, value_key ORDER BY value_date) AS rank
FROM HostAuditData
WHERE value_section = 'audit-dmi' AND value_key = 'audit-dmi'
)
SELECT
cte.host_id,
h ...
by psgca85
March 17, 2025 - 10:49
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Request to display dmi audit data
Answers: 5
Views : 30387

Re: Request to display DMI audit data

Hello,
Thank you for this answer, which I was able to adapt to my needs.
Sincerely,
Benoit.
by psgca85
March 14, 2025 - 4:49 PM
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Request to display dmi audit data
Answers: 5
Views : 30387

[RESOLVED] Request to display dmi audit data

Hello,

since the update to version 2.6, DMI data is no longer in the hosts table. It is now retrieved using DMI auditing.
How can I retrieve this data using a query?
For example, in version 2.5, to retrieve TPM information from PCs, you simply used this method...
by psgca85
August 14, 2024 - 4:16 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [RESOLVED] Agent not updating after update 2.5
Answers: 2
Views : 3315

Re: The agent is not updating after update 2.5

Thank you for your reply. Indeed, we hadn't set the upgrade as a dependency because it's not mentioned in the update procedure.
The agents are now showing as connected again.
Thank you very much.
by psgca85
July 31, 2024 - 10:58
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [RESOLVED] Agent not updating after update 2.5
Answers: 2
Views : 3315

[RESOLVED] The agent is not updating after update 2.5

Hello,
Following the update to version 2.5 of our server, the agents on version 2.4 are not updating. The machines appear as Disconnected on the console.
Running `wapt-get install waptupgrade` on the machine resolves the issue. However, running `wapt-get update` fails to detect the package.
by psgca85
December 26, 2023 - 3:41 PM
Forum: WAPT Packages
Subject: Installation parameters for an executable file could not be found
Answers: 1
Views : 1816

Installation parameters for an executable file could not be found

Hello,

we have several educational software programs in executable format for which the usual silent installation parameters /s /S /SILENT /VERYSILENT /QN do not work.

The Universal Silent Switch Finder tool, which allows us to find the installation options for an MSI or executable file...