Lavalys Discussion Forum: Listing computers NOT having a specified program - Lavalys Discussion Forum

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Listing computers NOT having a specified program

#1 User is offline   Bottolf

  • Newbie
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 12-July 05

Post icon  Posted 12 July 2005 - 10:29 AM

Hello.

Is it possible to list all computers NOT having a specified program installed? I make daily reports of all the computers in my network, and I want to know about the computers that has not been able to install the latest software I am rolling out. Thanks!
0

#2 User is offline   Bottolf

  • Newbie
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 12-July 05

Posted 19 July 2005 - 07:36 AM

Still no replies? I would believe this is a common situation? Maybe I didn't explain well enough. I run Everest on all my computers and then wants to know which computers NOT having Microsoft Office installed. Thanks for making a great product! smile.gif
0

#3 User is offline   Fiery

  • Lavalys Developer
  • PipPipPip
  • Group: Lavalys Moderators
  • Posts: 10,120
  • Joined: 30-July 04

Posted 19 July 2005 - 05:27 PM

I'm sorry, we saw your idea/request... Now we are actually considering several ways on how to make that possible through the current GUI. Not easy smile.gif


Regards,
Fiery
0

#4 User is offline   Bottolf

  • Newbie
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 12-July 05

Posted 20 July 2005 - 08:36 AM

Thanks for your reply. I hope you will be able to make this possible soon :-) A search tool inside the audit manager would be nice, so that you could search for the info you need instead of scrolling through lists. The search tool would then also need to have a way of searching for all computers not having the word you type in, for example a program. Cheers!
0

#5 User is offline   Avie

  • Newbie
  • Pip
  • Group: Members
  • Posts: 1
  • Joined: 30-October 05

Posted 30 October 2005 - 04:39 PM

QUOTE(Bottolf @ Jul 19 2005, 03:36 AM)
Still no replies? I would believe this is a common situation? Maybe I didn't explain well enough. I run Everest on all my computers and then wants to know which computers NOT having Microsoft Office installed. Thanks for making a great product! smile.gif
View Post



I run Everest without Microsoft Office. Only use Word 2000. No problems.
0

#6 User is offline   Bottolf

  • Newbie
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 12-July 05

Posted 16 December 2005 - 09:46 AM

I am able to do this today by using text search on the csv-files and then compare. If anyone wants details, please ask.
0

#7 User is offline   Maverick

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 142
  • Joined: 25-November 04

Posted 16 December 2005 - 12:54 PM

using a database - it's simple smile.gif

example:

qry_AntivirusSW
QUOTE
SELECT Report.RHost, Max(Report.RDateTime) AS MaxvonRDateTime, Item.IDevice
FROM Report INNER JOIN Item ON Report.ID = Item.ReportID
GROUP BY Report.RHost, Item.IDevice, Item.IID
HAVING (((Item.IDevice) Like "Symantec*") AND ((Item.IID)=1281));


qry_no_AntivirusSW
QUOTE
SELECT Report.RHost, Report.RHostComment, Max(Report.RDateTime) AS [Max von RDateTime]
FROM Report LEFT JOIN qry_AntivirusSW ON Report.RHost = qry_AntivirusSW.RHost
GROUP BY Report.RHost, Report.RHostComment, qry_AntivirusSW.IDevice
HAVING (((qry_AntivirusSW.IDevice) Is Null));


This first example qry searches for an installed symantec product.
the second example list all clients, which have no symantec programm installed


No need of the gui - use a database and yoou can create your own statements - it's simple

Maverick

This post has been edited by Maverick: 16 December 2005 - 12:58 PM

0

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users