I installed 6 new copiers and although they can use the old drivers, I'm working on upgrading the drivers. When I check lansweeper it doesn't list any network printers.
On my system for example, I have the 6 copiers installed as network printers, and none of them show up. I also have 3 other networked printer devices that don't show up either.
I augmented a script posted on another thread:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Domain,
tblPrinters.Caption,
tblPrinters.Local,
tblPrinters.Network,
tblPrinters.Sharename,
tblPrinters.Lastchanged
From tblAssets
Inner Join tblPrinters On tblAssets.AssetID = tblPrinters.AssetID
Where tblPrinters.Network = '1'
Order By tblAssets.AssetUnique,
tblPrinters.Caption
and it shows 9 network devices from 3 other systems none of the devices found, represent any of the copiers.
In fact, after looking at those systems, those printers are installed as local printers with network ports.
Any thoughts?