Page 1 of 1

[SOLVED] Windows machine with 4 GB RAM or less

Published: April 20, 2020 - 12:48 PM
by chris60fr
Hello
WAPT 1.7
Debian Stretch.

I'm trying to run a query that lists all PCs running Windows with 4 GB of RAM or less.

Thank you for your help.

Re: Windows PC with 4 GB RAM or less

Published: April 24, 2020 - 10:28 AM
by sfonteneau
Good morning

Replace the value 4286169088 with the value you want

Code: Select all

select host_metrics->'physical_memory' as RAM , host_metrics->'last_logged_on_user' as User, host_info->'computer_fqdn'  as Name from hosts WHERE host_metrics->'physical_memory'<'4286169088'    

Re: [SOLVED] Windows machine with 4 GB RAM or less

Published: April 28, 2020 - 6:08 PM
by chris60fr
Thank you so much :D