How to make a report with all software installed on a computer?
Hi Guy's,
I know this question is lame but I didn't found a way to create this simple report using the assistant and I don't know sql to do that.
How can i do that?
Best regards,
Rildo
I know this question is lame but I didn't found a way to create this simple report using the assistant and I don't know sql to do that.
How can i do that?
Best regards,
Rildo
0 Comments
[ + ] Show comments
Answers (6)
Please log in to answer
Posted by:
GillySpy
13 years ago
Duplicate the canned report called "Software on computer". Then modify it for a specific machine:
e.g.
e.g.
Select CONCAT(MACHINE.NAME, "\\", MACHINE.SYSTEM_DESCRIPTION) as MACHINE_NAME, DISPLAY_NAME,
DISPLAY_VERSION, PUBLISHER from (SOFTWARE, MACHINE_SOFTWARE_JT, MACHINE) where MACHINE.ID =
MACHINE_SOFTWARE_JT.MACHINE_ID and SOFTWARE.ID = MACHINE_SOFTWARE_JT.SOFTWARE_ID and not IS_PATCH
and MACHINE.NAME = 'enter machine name here'
order by MACHINE_NAME, DISPLAY_NAME
Posted by:
rgiroux
13 years ago
Posted by:
GillySpy
13 years ago
Posted by:
GillySpy
13 years ago
Posted by:
rgiroux
13 years ago
Posted by:
dchristian
13 years ago
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.