Is there a script to show a dell device ship date that is older than x years old?
Need a script that will show the age of dell computers older than x years old that will also show the device name, model, and ip addresss
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
KevinG
4 years ago
You can use the reporting module to retrieve this information from the DB.
select MACHINE.NAME,
MACHINE.IP,
MACHINE.CS_MODEL,
MACHINE.BIOS_SERIAL_NUMBER,
DELL_ASSET.SHIP_DATE
FROM MACHINE
JOIN DELL_ASSET ON DELL_ASSET.SERVICE_TAG = MACHINE.BIOS_SERIAL_NUMBER
ORDER BY MACHINE.NAME