' Pandora FMS Agent Inventory Plugin for Microsoft Windows (All platfforms) ' (c) 2015 Borja Sanchez ' This plugin extends agent inventory feature. Only enterprise version ' -------------------------------------------------------------------------- 'WMI disksinfo strComputer = "." Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colHDDs = objWMIService.ExecQuery("Select * from win32_diskdrive") on error resume next flag = colHDDs.Count If (err.number <> 0) Then flag = true Else flag = false End If on error goto 0 'Print only when there's results If (NOT flag) Then Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine "HD" Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine "" For Each disco In colHDDs If ((not IsNull(disco.size)) AND (disco.size > 0)) then Wscript.StdOut.Write "" End If Next Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine "" Wscript.StdOut.WriteLine "" End If