
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2010 10:58 PM
I want to scan all computers for a file called zebrabarcode.ttf in %windir%\system32.
Can you please provide detailed instructions on how to scan PCs for this and the SQL statement(s) to build this custom report.
thanks
Can you please provide detailed instructions on how to scan PCs for this and the SQL statement(s) to build this custom report.
thanks
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-02-2010 01:23 AM
There are lots of posts about this. If you do a search you will find what your looking for.
As far as how to scan for a file this is in the manual.
The SQL code you may want is something like:
As far as how to scan for a file this is in the manual.
The SQL code you may want is something like:
SELECT
tblComputers.Computername,
tblComputers.Username,
tblFileVersions.FileVersion
FROM
tblFileVersions
INNER JOIN tblComputers ON (tblFileVersions.Computername = tblComputers.Computername)
WHERE
tblFileVersions.FilePathfull LIKE '%zebrabarcode.ttf'
