Attempting to create a query for computers that have not used any componet of MS Office Professional Plus (componet programs are WINDWORD.EXE, MSACCESS.EXE, EXCEL.EXE, POWERPNT.EXE, and MSPUB.EXE) for more than 90 days.
LANDesk Management Suite Version 9.50.1.1
Server Operating System is Windows Server 2008 R2 SP 1
MS SQL Version is 2008 R2
A query for "Computer"."Software"."Application Suites"."Application Suite"."Name" = "Microsoft Office Professional Plus 2007" returns a result set of 2000+ computers
Started with WINWORD.EXE and a query of:
"Computer","Software","Package".Name" = "WINWORD.EXE"
AND "Computer"."Software"."Package"."Days Since Discovered" > "90"
AND "Computer"."Software"."Package"."Days Since Last Used" > "90"
This query returns 3200+ computer in the result set. The difference is due to other MS Office Suites and/or versions being installed, ie: MS Office 2007 Standard which would not include MSACCESS.EXE or MSPUB.EXE.
Adjusted query to:
("Computer","Software","Package".Name" = "WINWORD.EXE"
AND "Computer"."Software"."Package"."Days Since Discovered" > "90"
AND "Computer"."Software"."Package"."Days Since Last Used" > "90")
AND ("Computer","Software","Package".Name" = "MSACCESS.EXE"
AND "Computer"."Software"."Package"."Days Since Discovered" > "90"
AND "Computer"."Software"."Package"."Days Since Last Used" > "90")
Query returns "Query returned no results".
Also attempted a simple query of:
"Computer","Software","Package".Name" = "WINWORD.EXE"
AND "Computer","Software","Package".Name" = "MSACCESS.EXE"
Which also returns "Query returned no results".