Re: Software Reporting
- From: "Garth" <Spam@xxxxxxx>
- Date: Tue, 23 Jan 2007 14:24:10 -0500
You will find lots of SQL and WQL queries on http://myitforum.com/, I think
that steve has a blog there as well. Also look for and MVP & User group web
sites as many of them have blog and forum that you can get more help.
"FlaglerCollege" <FlaglerCollege@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:98D9D914-DB6D-4BD8-B0F7-8B0A562090B0@xxxxxxxxxxxxxxxx
Steve, this information was so helpful! Thank you!! Since I am not the
best
at SQL query,
may I ask where you got this or did you make this yourself? I was just
wondering as I would
love to find a place online that has additional custom report/query
samples
as well.
Thank you!
"Steve Thompson" wrote:
"FlaglerCollege" <FlaglerCollege@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in
message
news:727408E0-7010-44D5-9C65-B81192088365@xxxxxxxxxxxxxxxx
Does anyone have a report that will check all machines that do NOT have
a
particular software package installed? I can find everything about what
is
on
a machine however I would like to see if software is missing off of a
machine
such as Symantec AntiVirus.
Hopefully this helps... it's a collection template query that we created
to
located all devices without a specific file installed. The "magic" is
using
the subselect query, then the "Not In" logic to sift out those devices
that
have it installed.
select
SMS_R_System.ResourceID,SMS_R_System.ResourceType,SMS_R_System.Name,SMS_R_System.SMSUniqueIdentifier,SMS_R_System.ResourceDomainORWorkgroup,SMS_R_System.Client
from SMS_R_System inner join SMS_G_System_SYSTEM on
SMS_G_System_SYSTEM.ResourceID = SMS_R_System.ResourceId where
SMS_G_System_SYSTEM.ResourceID not in (select distinct
SMS_G_System_SYSTEM.ResourceID from SMS_R_System inner join
SMS_G_System_SYSTEM on SMS_G_System_SYSTEM.ResourceID =
SMS_R_System.ResourceId inner join SMS_G_System_SoftwareFile on
SMS_G_System_SoftwareFile.ResourceID = SMS_R_System.ResourceId where
SMS_G_System_SoftwareFile.FileName = "KAP-02_05-020520.wse")
.
- References:
- Re: Software Reporting
- From: Steve Thompson
- Re: Software Reporting
- Prev by Date: Re: Advice neeeded on the use of SMS 2003 as a replacement toolset
- Next by Date: SMS Client installation - ccmsetup.exe using /source command line switch
- Previous by thread: Re: Software Reporting
- Next by thread: Re: Software Reporting
- Index(es):
Relevant Pages
|