It is not currently possible to export computer "Report" sections from the web console.
You could recreate the data displayed in this section in the Lansweeper report builder, but we recommend that you narrow down the fields you wish to include. The "Report" section of computer webpages contains many fields from many different tables. An overview of used tables can be found below.
The built-in report “Computer: System configuration overview” includes the most vital computer details.
Operating systemtblOperatingsystem
System modeltblSystemEnclosure
ProcessortblPROCESSOR
Video cardtblVideoController
Sound cardtblSoundDevice
BiostblBIOS
Memoryweb40CorrectMemory
tblPhysicalMemory
DiskstblDiskdrives
Network infotblNetwork
SoftwaretblSoftware
For the other report you require, please try the query below.
Select Distinct Top 1000000 tblComputers.Computername,
tblComputers.ComputerUnique, tblComputers.Lastseen, tblSerialnumber.Product,
tblSerialnumber.ProductID, tblSerialnumber.ProductKey
From tblComputers Inner Join
web40ActiveComputers On web40ActiveComputers.Computername =
tblComputers.Computername Inner Join
tblSerialnumber On tblComputers.Computername = tblSerialnumber.Computername
Order By tblComputers.ComputerUnique