
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2020 08:39 PM
- Labels:
-
General Discussion

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2020 04:26 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-10-2020 12:26 AM
On that page, you should be able to go to report to see what it shows. Note once added to the file scanning you will need to re-scan the machines for the report to show any data.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-05-2020 11:00 PM
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.IPAddress,
tblAssets.Lastseen,
tsysOS.OSname,
tsysOS.Image As icon
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblAssets.AssetID Not In (Select tblFileVersions.AssetID
From tblFileVersions
Where tblFileVersions.FilePathfull Like '%Fonts\EXAMPLE.TTF' And
tblFileVersions.Found = 'True') And tblAssetCustom.State = 1
Order By tblAssets.AssetName
You can also read on scanning the registry for fonts. Here is the link for that.
https://www.lansweeper.com/knowledgebase/report-based-on-registry-keys/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2023 03:54 PM
Y must be careful - inside the script is a NOT. So you get all except the one where the font is installed.
Although you have to filescan in front.
And user installed fonts are saved as file inside the user profile at
%userprofile%\AppData\Local\Microsoft\Windows\Fonts\xxxxx.ttf

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-06-2020 03:53 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-06-2020 09:50 PM
Todd wrote:
I can find the registry keys no problem but I can't seem to get the font report to work. No matter what I do, it just shows up with every computer on the list regardless of if it has that font in the C:\windows\fonts folder or not.
If you have an image of what you have, it can help other viewers jump in and give an answer or if they spot an error in the code.
