
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2015 06:00 PM
I'd like to exclude specific asset groups from certain reports is there a quick way in the GUI to do this? If so, I haven't come across the option yet. Your help is greatly appreciated. The reason for this is because I have some VMs/Servers that are reporting no AV though I don't want AV on them in the first place.
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2015 11:00 PM
Run yourself a list of what's in tblAssetCustom.
You should be able to use what you find in there to filter on the manufacturer and/or model. E.g. with my inventory, I can include
SELECT Distinct Top 1000000
tblAssetCustom.Manufacturer,
tblAssetCustom.Model
FROM
tblAssetCustom
You should be able to use what you find in there to filter on the manufacturer and/or model. E.g. with my inventory, I can include
AND (tblAssetCustom.Manufacturer Not Like 'VMWare%')in my WHERE clause. (I could get away with just checking the model, but I like to cover all my bases.)
AND (tblAssetCustom.Model Not Like 'VMWare%')
AND (tblAssetCustom.Model <> 'Virtual Machine')
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2015 11:00 PM
Run yourself a list of what's in tblAssetCustom.
You should be able to use what you find in there to filter on the manufacturer and/or model. E.g. with my inventory, I can include
SELECT Distinct Top 1000000
tblAssetCustom.Manufacturer,
tblAssetCustom.Model
FROM
tblAssetCustom
You should be able to use what you find in there to filter on the manufacturer and/or model. E.g. with my inventory, I can include
AND (tblAssetCustom.Manufacturer Not Like 'VMWare%')in my WHERE clause. (I could get away with just checking the model, but I like to cover all my bases.)
AND (tblAssetCustom.Model Not Like 'VMWare%')
AND (tblAssetCustom.Model <> 'Virtual Machine')
