
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2022 02:58 PM
Hello everybody,
I have a question, hope you have an answer.
When I filter my software, I have the same software with same version in two differents lines.
Is that because one line is for 32 bits and the other one for 64 bits ?
In this example with Chrome, but it happens with several software too.
Thank you.
I have a question, hope you have an answer.
When I filter my software, I have the same software with same version in two differents lines.
Is that because one line is for 32 bits and the other one for 64 bits ?
In this example with Chrome, but it happens with several software too.
Thank you.
Labels:
- Labels:
-
General Discussion
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2022 10:28 PM
not sure what the reason is - it kinda depends on different things.
you could try running this query to see:
you could try running this query to see:
SELECT TOP (1000) [SoftwareID]
,[AssetID]
,tblsoftware.[softID]
,tblSoftwareUni.softwareName
,tblSoftwareUni.SoftwarePublisher
,[softwareVersion]
,[Installdate]
,[Lastchanged]
,[CurrentUser]
,[MSI]
FROM [lansweeperdb].[dbo].[tblSoftware]
left join tblSoftwareUni on tblsoftware.softid = tblSoftwareUni.softid
where softwareVersion = '98.0.4758.81'

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-22-2022 09:48 AM
Thanks Rom, it helped me, the difference is from the MSI.
Rom wrote:
not sure what the reason is - it kinda depends on different things.
you could try running this query to see:
SELECT TOP (1000) [SoftwareID]
,[AssetID]
,tblsoftware.[softID]
,tblSoftwareUni.softwareName
,tblSoftwareUni.SoftwarePublisher
,[softwareVersion]
,[Installdate]
,[Lastchanged]
,[CurrentUser]
,[MSI]
FROM [lansweeperdb].[dbo].[tblSoftware]
left join tblSoftwareUni on tblsoftware.softid = tblSoftwareUni.softid
where softwareVersion = '98.0.4758.81'
