→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
rathm
Engaged Sweeper
Is it possible to find a PC by entering its mac address or is there a report that will pull all the PC's mac addresses?

Thanks,

Mike
2 REPLIES 2
rathm
Engaged Sweeper
Thanks so much!
Hemoco
Lansweeper Alumni
Searching for a mac is currently not supported (but a good idea for next version)

report would go something like this:

SELECT     TOP 100 PERCENT dbo.tblComputers.Computername, dbo.tblComputers.Domain, dbo.tblNetwork.Description, dbo.tblNetwork.IPAddress, 
dbo.tblNetwork.MACaddress
FROM dbo.tblComputers INNER JOIN
dbo.tblNetwork ON dbo.tblComputers.Computername = dbo.tblNetwork.Computername
ORDER BY dbo.tblComputers.Computername