generate listing of all mac computer's software
It would be great to know if there is a way to generate some sort of listing of all Mac computers in our inventory which shows which software is installed on each machine. Also, if we could view all software and see which machines have it. Thanks.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
airwolf
14 years ago
Here is a simple report to show all Mac systems and all installed software. Make sure you "break on" the NAME column when you create the report - this will group the software under each machine.
SELECT M.NAME, S.DISPLAY_NAME FROM MACHINE M
JOIN MACHINE_SOFTWARE_JT MSJT ON (M.ID = MSJT.MACHINE_ID)
JOIN SOFTWARE S ON (MSJT.SOFTWARE_ID = S.ID)
WHERE M.OS_NAME like '%Mac%'
ORDER BY 1 asc, 2 asc
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.