The report that runs when clicking the Report button next to a file name is a report that has a
Where clause auto-completed using a variable contained in the report url, containing the file name of the file in question. This dynamic report should in effect be identical to a manual file scanning report, the only difference being how the where clause is inserted.
I did some testing with the exact same file path as you're using in Lansweeper version 6.0.100.87 and found no issue calling up the automatically generated report. It's not entirely clear to me what could cause it to fail as it's pretty straight forward.
If you haven't yet,
update your Lansweeper installation to the latest version. If the issue persists in the latest version, please contact us via email at support@lansweeper.com so we can investigate further. When contacting support please provide the following:
- A description of the issue.
- Errorlog.txt which can be found in the Service folder in the Lansweeper installation folder
- Screenshots of the entire browser window of the report output for both the automatically generated report and a custom report containing a filter for the specific file path
Select tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon16 As icon,
tblAssets.Domain,
tblFileVersions.FilePathfull,
tblFileVersions.FileVersion,
tblFileVersions.CompanyName,
tblFileVersions.Filesize,
tblFileVersions.CreationDate,
tblFileVersions.LastAccessed,
tblFileVersions.LastModified,
tblFileVersions.Lastchanged,
TsysLastscan.Lasttime As [Last scanned]
From tsysAssetTypes
Inner Join tblAssets On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblFileVersions On tblAssets.AssetID = tblFileVersions.AssetID
Inner Join TsysLastscan On tblAssets.AssetID = TsysLastscan.AssetID
Inner Join TsysWaittime On TsysLastscan.CFGcode = TsysWaittime.CFGCode
Where tblFileVersions.FilePathfull Like @name And TsysWaittime.CFGname = 'FILES'
And tblFileVersions.Found = 1