cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
bwoodruff
Engaged Sweeper

We noticed that the Software Change Report (both 24 hours and 7 days) did not reflect software removals.  We were able to resolve this issue by removing the following table from the query: tblSoftware

Here is our query for the 7 day report.  The only change needed for the 24 hour report is to change the Where tblSoftwareHist.Lastchanged > GetDate() - 7 to Where tblSoftwareHist.Lastchanged > GetDate() - 1

Select Top (1000000) tsysOS.Image As Icon,
tblAssets.AssetID,
tblAssets.AssetName,
Case tblSoftwareHist.Action
When '1' Then '+'
When '2' Then '-'
End As [+/-],
tblSoftwareUni.softwareName As Software,
tblSoftwareHist.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
tblSoftwareHist.Installdate,
tblSoftwareHist.Lastchanged,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Description,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Location,
tsysIPLocations.IPLocation,
tsysOS.OSname As OS,
tblAssets.SP,
tblAssets.Firstseen As [Created at],
tblAssets.Lastseen As [Last successful scan]
From tblAssets
Inner Join tblSoftwareHist On tblAssets.AssetID = tblSoftwareHist.AssetID
Inner Join tblSoftwareUni On tblSoftwareHist.softid = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Left Outer Join tsysIPLocations On tsysIPLocations.LocationID =
tblAssets.LocationID
Where tblSoftwareHist.Lastchanged > GetDate() - 7 And tblAssetCustom.State = 1
Order By tblAssets.AssetName,
tblSoftwareHist.Lastchanged Desc,
Software

 

1 ACCEPTED SOLUTION
DavidPK
Lansweeper Tech Support
Lansweeper Tech Support

The 'Software Changes in the last 24 Hours and 7 days' report in Lansweeper does not list software that was removed. It only lists new software and updated software.
 

Normally we recommend that customer can create a custom report which it seems you have done already. 

View solution in original post

2 REPLIES 2
bwoodruff
Engaged Sweeper

Hi David,

I wanted to point this out to the community as it seems an oversight that the 'Software Change Report' was missing removals.

DavidPK
Lansweeper Tech Support
Lansweeper Tech Support

The 'Software Changes in the last 24 Hours and 7 days' report in Lansweeper does not list software that was removed. It only lists new software and updated software.
 

Normally we recommend that customer can create a custom report which it seems you have done already.