
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2021 04:21 PM
We have an external security source that scans our network for vulnerabilities and has detected an out dated version of the Edge browser. I have checked our SCCM and Lansweeper reports but they do on show this
Version as being used in the company pcs. Is there a way to scan for this specific version?
Microsoft Edge 18.19042 end of service 91.0.864.48
Thanks
Version as being used in the company pcs. Is there a way to scan for this specific version?
Microsoft Edge 18.19042 end of service 91.0.864.48
Thanks
Labels:
- Labels:
-
General Discussion
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2021 06:59 PM
yes correct which is the version being reported by our security audit. 18.19042

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2021 06:56 PM
For the version I put in 18.19042. Is that correct?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2021 06:44 PM
Thanks Brandon the report returns empty. I beginning to lean towards someones BYOD device on our VPN that we cannot access of scan.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2021 06:17 PM
Try adding this report. It will tell you which computers have that specific version of Edge installed:
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
tblSoftware.Lastchanged,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Left Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Inner Join tblState On tblState.State = tblAssetCustom.State
Where tblSoftwareUni.softwareName Like 'Microsoft Edge' And
tblSoftware.softwareVersion Like '18.19042'
Order By tblAssets.Domain,
tblAssets.AssetName,
Software
