
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2008 11:12 PM
How do I do this. I tried a modified version of the post below mine but was unable to get the proper results.
- Labels:
-
Report Center

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2009 08:07 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2009 09:51 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2009 01:13 PM
Lansweeper wrote:
could you post an extract from "select * from tblFileVersions"
This seems to work:
Select tblFileVersions.Computername, tblFileVersions.FilePathfull,
tblFileVersions.Found
From tblFileVersions
Where tblFileVersions.FilePathfull Like '%file.exe%' And tblFileVersions.Found <>
''
Btw. how i can delete those 'web30rep*' things from reportbuilder?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2009 02:00 PM
KRH wrote:
Btw. how i can delete those 'web30rep*' things from reportbuilder?
Right click on the report/delete

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2009
03:15 PM
- last edited on
‎02-06-2023
08:10 PM
by
beacampos
Lansweeper wrote:
KRH wrote:
Btw. how i can delete those 'web30rep*' things from reportbuilder?
Right click on the report/delete
I mean these:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2009 07:00 PM
Added one file to scanned files list (C:\Folder\file.exe). Then created following query:
SELECT
tblFileVersions.Computername,
tblFileVersions.FilePathfull
FROM
tblFileVersions
WHERE
tblFileVersions.FilePathfull LIKE '%file.exe%'
Report shows that this file has been found on many computers that doesn't have it. What's wrong with this report?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2008 05:34 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2008 12:25 AM
SELECT computername FROM tblcomputer where computername not in (select computername from tblsoftware WHERE softwarename
= 'Trend Micro Client/Server Security Agent')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2008 11:59 PM
tblsoftware.computername
FROM
tblsoftware
WHERE
NOT softwarename = 'Trend Micro Client/Server Security Agent'
This just brings back all of the computer names. There should be about 10-15 that don't have this software.
