
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2019 07:35 PM
Hello,
Newbie here again I was wondering if anyone knew how to make a report to scan and return all products from creative cloud. I want to see what versions of Photoshop and In-design Creative cloud has installed on a users machine. I want to push updates on particular people and make sure they stay up to date but at this time im also wanting a report to show me whom has what version.
Thanks
Newbie here again I was wondering if anyone knew how to make a report to scan and return all products from creative cloud. I want to see what versions of Photoshop and In-design Creative cloud has installed on a users machine. I want to push updates on particular people and make sure they stay up to date but at this time im also wanting a report to show me whom has what version.
Thanks
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2019 10:41 PM
Try something like this.
You only want to evaluate active assets, so you need the state=1 check clearly separated from the software name check. You want to check for any of multiple possible conditions, so you want to OR the software checks: if any one of the OR'd conditions is true, the block in parenthesis is true, so you've got a match.
tblAssetCustom.State = 1
AND (tblSoftwareUni.softwareName LIKE 'Adobe Reader%'
OR tblSoftwareUni.softwareName LIKE 'Indesign%'
OR tblSoftwareUni.softwareName LIKE 'Photoshop%'
)
You only want to evaluate active assets, so you need the state=1 check clearly separated from the software name check. You want to check for any of multiple possible conditions, so you want to OR the software checks: if any one of the OR'd conditions is true, the block in parenthesis is true, so you've got a match.
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2019 03:19 PM
What is the entire query, please?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2019 10:56 PM
Had to run the following to work:
tblAssetCustom.State = 1
AND (tblSoftwareUni.softwareName LIKE '%Adobe Reader%'
OR tblSoftwareUni.softwareName LIKE '%Indesign%'
OR tblSoftwareUni.softwareName LIKE '%Photoshop%'
)
However Thank you so much RC62N
tblAssetCustom.State = 1
AND (tblSoftwareUni.softwareName LIKE '%Adobe Reader%'
OR tblSoftwareUni.softwareName LIKE '%Indesign%'
OR tblSoftwareUni.softwareName LIKE '%Photoshop%'
)
However Thank you so much RC62N
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2019 10:41 PM
Try something like this.
You only want to evaluate active assets, so you need the state=1 check clearly separated from the software name check. You want to check for any of multiple possible conditions, so you want to OR the software checks: if any one of the OR'd conditions is true, the block in parenthesis is true, so you've got a match.
tblAssetCustom.State = 1
AND (tblSoftwareUni.softwareName LIKE 'Adobe Reader%'
OR tblSoftwareUni.softwareName LIKE 'Indesign%'
OR tblSoftwareUni.softwareName LIKE 'Photoshop%'
)
You only want to evaluate active assets, so you need the state=1 check clearly separated from the software name check. You want to check for any of multiple possible conditions, so you want to OR the software checks: if any one of the OR'd conditions is true, the block in parenthesis is true, so you've got a match.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2019 09:59 PM
Right so I have the following:
tblAssetCustom.State = 1
AND tblSoftwareUni.softwareName LIKE 'Adobe Reader%'
However I was unsure how to add more to the list.
Because the following doesn't work.
tblAssetCustom.State = 1
AND tblSoftwareUni.softwareName LIKE 'Adobe Reader%' Like 'Indesign%' Like 'Photoshop%'
This is the exact reason why I was asking the question. I am not great with this but im trying to learn.
Even by removing Like and replacing the other two with , commas I still get an error. So I am trying to learn how to add the extra. IF you have a better link that shows more than one software being read please forward me the link. I already looked up google with little to different search topics that didn't help me. I browsed around here too but not all topics or their results match the same nor help.
tblAssetCustom.State = 1
AND tblSoftwareUni.softwareName LIKE 'Adobe Reader%'
However I was unsure how to add more to the list.
Because the following doesn't work.
tblAssetCustom.State = 1
AND tblSoftwareUni.softwareName LIKE 'Adobe Reader%' Like 'Indesign%' Like 'Photoshop%'
This is the exact reason why I was asking the question. I am not great with this but im trying to learn.
Even by removing Like and replacing the other two with , commas I still get an error. So I am trying to learn how to add the extra. IF you have a better link that shows more than one software being read please forward me the link. I already looked up google with little to different search topics that didn't help me. I browsed around here too but not all topics or their results match the same nor help.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-14-2019 05:43 PM
Take a look around the forum (or do a google search), I think there are plenty of report examples available that filter for a specific software.
For example: https://www.lansweeper.com/Forum/yaf_postst10248_Adobe-reader.aspx#post38763
Basically, you'll have to add the different software titles you want to filter for to the Where clause.
For example: https://www.lansweeper.com/Forum/yaf_postst10248_Adobe-reader.aspx#post38763
Basically, you'll have to add the different software titles you want to filter for to the Where clause.
