Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Answered

Check if all applications installed

I am trying to create a collection that checks if all the listed applications are installed on a particular PC collection. Is this possible with PDQ Inventory?

0

Comments

1 comment
Date Votes
  • All you need to do is create the group using the checks for all the groups of the applications in question. For example, if you the group of all applications was just 7-zip and Acrobat reader, your filter would be:

    All 
      All
        Application, Name, Starts With, $(AppName7Zip)
        Application, Version, Version Not Lower Than $(AppVer7Zip)
      All
        Application, Name, Starts With, $(AppNameAdobeReaderDC)
        Application, Version, Version Not Lower Than, $(AppVerAdobeReaderDC)
    
    0