
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-01-2014 01:17 AM
In the report section I see a list that says Send to OneNote and Messager for IE addons. Is it possible to run a report on machines that have a specific addon that is enabled/disabled ?
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
‎10-02-2014 12:31 PM
You can use the following report. Please change the word in red to the name of the addon that you want to filter on:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblIEExtensions.Buttontext As ieaddon
From tblAssets
Inner Join tblIEExtensions On tblAssets.AssetID = tblIEExtensions.AssetID
Where tblIEExtensions.Buttontext Like '%send to onenote%'
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblIEExtensions.Buttontext As ieaddon
From tblAssets
Inner Join tblIEExtensions On tblAssets.AssetID = tblIEExtensions.AssetID
Where tblIEExtensions.Buttontext Like '%send to onenote%'
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2014 12:31 PM
You can use the following report. Please change the word in red to the name of the addon that you want to filter on:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblIEExtensions.Buttontext As ieaddon
From tblAssets
Inner Join tblIEExtensions On tblAssets.AssetID = tblIEExtensions.AssetID
Where tblIEExtensions.Buttontext Like '%send to onenote%'
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblIEExtensions.Buttontext As ieaddon
From tblAssets
Inner Join tblIEExtensions On tblAssets.AssetID = tblIEExtensions.AssetID
Where tblIEExtensions.Buttontext Like '%send to onenote%'
