This query lists all the machines with a copy of Adobe Distiller by Version.
*Requires BDNA Normalize CM
|
Manufacturer |
Product Name |
Major Version |
|
Adobe Systems |
Distiller |
10 |
|
Adobe Systems |
Distiller |
9 |
|
Adobe Systems |
Distiller |
8 |
|
Adobe Systems |
Distiller |
7 |
|
Adobe Systems |
Distiller |
6 |
|
Adobe Systems |
Distiller |
5 |
|
Adobe Systems |
Distiller |
4 |
|
Adobe Systems |
Distiller |
3 |
|
Adobe Systems |
Distiller |
2 |
|
Adobe Systems |
Distiller |
1 |
*The list above is not exhaustive, and only provided a sample of the data that are available within CM.
Using the new CM class BDNA_SOFTWARE_DATA, all your inventoried software are now available into a single table. You can query this table using WQL or SQL.
WQL:
select System.Name, Software.Publisher, Software.Family, Software.SoftwareName, Software.Component, Software.MinorVersion, Software.MajorVersion, Software.Edition, Software.Category1, Software.Category2 from SMS_R_System inner join SMS_G_System_BDNA_BDNASOFTWAREDATA_1_1 as Software on Software.SMSUniqueIdentifier = SMS_R_System.SMSUniqueIdentifier inner join SMS_R_System as System on System.SMSUniqueIdentifier = Software.SMSUniqueIdentifier where Software.Publisher = "Adobe Systems" and Software.SoftwareName = "Distiller"
SQL:
SELECT v_R_System.Name0 as Name, Software.Publisher0 as Publisher, Software.Family0 as Family, Software.SoftwareName0 as SoftwareName, Software.Component0 as Component, Software.MinorVersion0 as MinorVersion, Software.MajorVersion0 as MajorVersion, Software.Edition0 as Edition, Software.ServicePack0 as ServicePack, Software.Category10 as Category1, Software.Category20 as Category2
FROM v_R_System
INNER JOIN v_GS_BDNA_Software_Data0 Software ON Software.SMSUniqueIdentifier0 = v_R_System.SMS_Unique_Identifier0
WHERE Software.Publisher0 = ‘Adobe Systems’ AND Software.SoftwareName0 = ‘Distiller’

Gary Blok: Does it matter which option you do first? Say I want to setup the MBA...
Dwayne Allen: I ran into the same issue with $Form.TopMost = $True not applying when...
roncrumbaker: Great link! Lots of information out there...and yes, there are many v...
Geoff Buckingham: Been trying to get some work done on mine for a long time ... without ...
Clint Huffman: Page file sizing depends on the crash dump setting of the system as we...