Managed to piece together a powershell script which does this:
Param($pcname)
$SKU = "Product Number: " + (gwmi -Namespace root\wmi -Class MS_SystemInformation).SystemSKU
$Serial = "Serial Number: " + (Get-WmiObject -computer $pcname -cl win32_BIOS).SerialNumber
$Model = "Model: " + (Get-WmiObject -Class Win32_ComputerSystem -ComputerName $pcname).Model
$Info = $Serial,$Model,$SKU
$Info | clip
I put it in the Action Path and added to Asset Actions:
powershell.exe -windowstyle hidden {actionpath}\CopyInfo.PS1 -pcname {computer}
I should mention this only works with the laptop turned on.
If anyone has a way to get this out of the lansweeper database, that would be awesome.