The search returned 25 results

by mviale
September 23, 2024 - 1:56 PM
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Request for "Waiting for restart"
Answers: 4
Views : 26979

Re: Request for "Waiting for restart"

Hello,

is it not possible to retrieve this value via an SQL query?

I have this for all WUA statuses to retrieve the total per status, but it doesn't include "Awaiting restart": `

SELECT waptwua_status->'status' as status, COUNT(DISTINCT hosts.computer_name) as total ...`
by mviale
September 24, 2021 - 9:57 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: waptmessage
Answers: 2
Views : 3937

Re: waptmessage

Thanks for the reply. :)

Yes, I've already changed the logo, but I'd like to have one for self-service and another for WaptMessage. :)
by mviale
September 24, 2021 - 11:05 AM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: waptmessage
Answers: 2
Views : 3937

waptmessage

Hello,

I have two quick questions about the WaptMessage service from the console:
Is it possible to use a logo other than the sel-service logo? If not, is this planned for a future version?
Is it possible to remove the certificate name that appears at the end of the message?
by mviale
July 21, 2021 - 11:52
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Error in retrieving information from the listening_timestamp field
Answers: 2
Views : 9904

[SOLVED] Re: Error in retrieving information on the listening_timestamp field

Hi Denis,

OK, thanks for the information, I'll modify my requests.

Mathieu
by mviale
July 20, 2021 - 4:51 PM
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Error in retrieving information from the listening_timestamp field
Answers: 2
Views : 9904

[RESOLVED] Error in retrieving information from the listening_timestamp field

Hello,

I'm trying to run a query that retrieves the software version and the last connection date of the PC using the `listening_timestamp` field.
However, this field only returns the date 01/07, which corresponds to the migration date to WAPT Enterprise. When I go to one of the computers in the...
by mviale
July 19, 2021 - 11:47
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [RESOLVED] Message when re-editing a package from PyScripter
Answers: 3
Views : 4505

Re: [SOLVED] Message when re-editing a package from PyScripter

Hello,

where is the option "You can tell PyScripter to take disk changes into account"?
I tried the option "Tools->Options->IDE Options->File Explorer -> File Change Notification -> fcnDisabled" but I still get the messages...
by mviale
July 16, 2021 - 12:25
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Pyscripter - Unable to connect to remote Python engine
Answers: 8
Views : 10940

Re: Pyscripter - Unable to connect to remote Python engine

The problem is solved...

Comparing it to another machine, the Python paths in Pyscripteur (Tools -> Python path) weren't identical.
I also didn't have the same files in C:\Program Files (x86)\wapt\Scripts.

So I uninstalled Pyscripteur, the Wapt agent, and the Wapt console...
by mviale
July 12, 2021 - 3:29 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Pyscripter - Unable to connect to remote Python engine
Answers: 8
Views : 10940

[SOLVED] Pyscripter - Unable to connect to remote Python engine

Hello,

I get an error message every time I launch Pyscripteur stating that "Connection to the remote Python engine failed. The remote process console and debugger are not accessible."

I am using Enterprise version 2.0.0.9428.
I installed Pyscripteur using the package...
by mviale
July 8, 2021 - 8:53 PM
Forum: Reporting - SQL Queries
Subject: [SOLVED] Free disk space per machine
Answers: 6
Views : 15570

Re: [SOLVED] Free disk space per machine

Good evening Denis,

thank you very much!

Mathieu
by mviale
July 8, 2021 - 3:24 PM
Forum: Reporting - SQL Queries
Subject: [SOLVED] Free disk space per machine
Answers: 6
Views : 15570

[SOLVED] Free disk space per machine

Hello,

I'm trying to create a query to quickly extract the free space from each machine in my network.

I have the `Freespace` attribute available, which I'm trying to retrieve, but it's failing:
`select host_metrics->'local_drives'->>'C'->>>'FreeSpace' as "Free Space ...`