You are not logged in.
Hi, Is it possible for GLPI Inventory to report the hard disk status for each device a computer holds using WMI in the tasks -> computer information, and is an example format available to show the formatting of the following fields :
Name:
Monikor:
Class:
Properties:
Thanks
Offline
Hi supertramp4,
do you still have a "wmic" command example or even a PS or VBS script to catch the "SMART" data of disks via WMI ?
GLPI-Agent developer from Teclib' and GLPI-Network team
Previously FusionInventory-Agent maintainer
Offline
Hi gbougard,
from an elevated command prompt, running "wmic diskdrive get DeviceID,status" will report the Status ( i think of either "OK", "bad","unknown,", "caution", but im not 100% on these
you might want to just run "wmic diskdrive" to get the list of available elements to match what GLPI is already able to report
C:\Windows\system32>wmic diskdrive get DeviceID,status
DeviceID Status
\\.\PHYSICALDRIVE1 OK
\\.\PHYSICALDRIVE0 OK
\\.\PHYSICALDRIVE3 OK
\\.\PHYSICALDRIVE2 OK
Offline