Building reports requires SQL knowledge, as the Lansweeper report builder uses standard SQL queries. We recommend familiarizing yourself with SQL: http://www.w3schools.com/sql/default.asp
For the specific information you are after, please use the report below. Note that there are hundreds of built-in reports under Dashboard/Reports/All Reports.
Select Distinct Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tsysOS.OSname,
tblAssets.OScode,
tblAssets.SP,
tblOperatingsystem.Caption As FullOSName,
tblDiskdrives.Caption As [Disk],
Ceiling(tblDiskdrives.Size / 1024 / 1024) As TotalMB,
tblAssets.Memory,
tblAssets.Processor,
tblProcessor.MaxClockSpeed,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Serialnumber,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion,
tblSoftwareUni.SoftwarePublisher,
tblAssets.Firstseen,
tblAssets.Lastseen
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblProcessor On tblAssets.AssetID = tblProcessor.AssetID
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Inner Join tblOperatingsystem On tblOperatingsystem.AssetID =
tblAssets.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblSoftwareUni.softwareName Like 'Microsoft%Office%20%' And
tblAssetCustom.State = 1 And tblDiskdrives.DriveType = 3
Order By tblAssets.Domain,
tblAssets.AssetName,
[Disk]