I would like to run a custom report which returns the serial number, purchase date, warranty date, custom field 1, mac address and station name for all computers beginning with the name "VOC-"
You need a completely different report for this, as device information is stored in different tables. (Lansweeper version 5 will merge computers and devices into a single "asset" category.)
Please try the report below for the information you're after.
Select tblCustDevices.Displayname, tblCustDevices.Serialnumber, tblCustDevices.PurchaseDate, tblCustDevices.Warrantydate, tblCustDevices.Custom1, tblCustDevices.Mac From tblCustDevices Where tblCustDevices.Displayname Like '%Ruckus%' Order By tblCustDevices.Displayname
Select Top 1000000 tblComputers.Computername, tblComputers.Computer, tblComputers.Domain, tblSystemEnclosure.SerialNumber, tblCompCustom.PurchaseDate, tblCompCustom.Warrantydate, tblCompCustom.Custom1, tblNetwork.MACaddress From tblComputers Inner Join web40ActiveComputers On tblComputers.Computername = web40ActiveComputers.Computername Inner Join tblNetwork On tblComputers.Computername = tblNetwork.Computername Inner Join tblSystemEnclosure On tblComputers.Computername = tblSystemEnclosure.Computername Inner Join tblCompCustom On tblComputers.Computername = tblCompCustom.Computername Where tblComputers.Computer Like 'VOC-%' And tblNetwork.IPEnabled = 1 Order By tblComputers.Computer
Archive
This board contains archived posts from the retired Lansweeper Forum and Insiders Community.