The computer model overview is automatically generated based on scanned WMI info and cannot currently be manually manipulated. In Lansweeper version 5.0 the vendor and model fields will likely be turned into custom fields, allowing you to override these scanned records. Lansweeper 5.0 is currently in development, but we do not yet have a release date for it.
What you can do for now is create your own custom report with the information you are after. The report below for instance lists
all "OptiPlex 740" machines by Dell.
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblComputersystem.Model, tblComputersystem.Manufacturer
From tblComputers Inner Join
tblComputersystem On tblComputers.Computername =
tblComputersystem.Computername
Where tblComputersystem.Model = 'OptiPlex 740' And
tblComputersystem.Manufacturer Like '%dell%'
Order By tblComputers.ComputerUnique
To use the specified report, do the following:
• Open the Lansweeper configuration console and select Reports & Alerts\Report Builder. Hit the “New” button.
• Copy the SQL code provided and paste it at the bottom of the newly created report, replacing the default SQL code.
• Click somewhere near tblComputers so the new code applies.
• Give the report a “View name” and a “Report name” and hit the “Save” button.
• Double-click on the report in the report list to see its results and export options.