Welcome to OCS Inventory NG community support, where you can ask questions and receive answers from other members of the community.

Please ask questions only in English or French.

Release 2.11.1 available

The official documentation can be found on http://wiki.ocsinventory-ng.org. Read it before asking your question.

Generate Excel file with all software installed?

Is there a way to generate an excel file with a list of all computers and every software installed on each? I can only download the device excel one at a time, I need a file with all of the devices
in OCS Inventory NG agent for Windows by (120 points)

2 Answers

0 votes
Using MySQL (MariaDB), it's possible (maybe easy) to generate a CSV file readeable by Excel (see SELECT INTO OUTFILE : https://mariadb.com/kb/en/select-into-outfile/ ).

(Please note, you need to add an header row with fields names.)

But this kind of file is static : it's an 'image' of all computers inventoried at ONE instant.

Keep in mind this kind of file is ... obsolete only 10 minutes after !
by (19.2k points)
edited by
0 votes

Example (for OCS >=2.8) :

select h.deviceid, h.name, sn.name, sv.version, s.comments
into outfile '/tmp/export.csv'
  fields terminated by ',' optionally enclosed by '"'
  lines terminated by '\n'
from hardware as h, software as s, software_name as sn, software_version as sv
where s.hardware_id=h.id and sn.id=s.name_id and sv.id=s.version_id and h.archive is null
order by h.name, sn.name, sv.version

by (19.2k points)
edited by
 
Powered by Question2Answer
...