why doesn’t KACE actually show you the Manufacturer, model, and serial # of a Hard Drive or SSD?
Can the KACE appliance get this kind of detailed information?
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
jknox
9 years ago
Another option would be to use WMIC:
ShellCommandTextReturn(cmd /c wmic diskdrive get model,serialnumber)
See here for more information on custom inventory rules: http://documents.software.dell.com/k1000-systems-management-appliance/6.3/administrator-guide/managing-inventory/writing-custom-inventory-rules
Comments:
-
Thanks very much for this, will save me time in tearing machines down to find out. - hf13207 8 years ago
Posted by:
Nico_K
9 years ago
you can create a custom inventory rule to get this info.
For myself I let smartctl do a full run to get the info:
=== START OF INFORMATION SECTION ===
Model Family: Seagate Laptop SSHD
Device Model: ST500LM000-1EJ162
Serial Number: W762CKCM
LU WWN Device Id: 5 000c50 07cb0b78e
Firmware Version: SM28
User Capacity: 500.107.862.016 bytes [500 GB]
Sector Sizes: 512 bytes logical, 4096 bytes physical
Rotation Rate: 5400 rpm
Form Factor: 2.5 inches
You can also use wmic to get the info for a CIR
For myself I let smartctl do a full run to get the info:
=== START OF INFORMATION SECTION ===
Model Family: Seagate Laptop SSHD
Device Model: ST500LM000-1EJ162
Serial Number: W762CKCM
LU WWN Device Id: 5 000c50 07cb0b78e
Firmware Version: SM28
User Capacity: 500.107.862.016 bytes [500 GB]
Sector Sizes: 512 bytes logical, 4096 bytes physical
Rotation Rate: 5400 rpm
Form Factor: 2.5 inches
You can also use wmic to get the info for a CIR
Comments:
-
In first step you need to download the smartmontools for Windows and setup a MI using this commandline: smartmontools.exe /S
Then create a CIR (Inventory > Software > New Item) using this commandline for HD0: ShellCommandTextReturn(cmd /c smartctl -a /dev/sda) to get the full walk, You can modify the command line if you only need some info. (I use ShellCommandTextReturn(cmd /c smartctl -a /dev/sda|findstr result) because I only need the info if the smart state is good or not) - Nico_K 9 years ago-
Hello, I'm new here and at the time I'm trying to manage our kace1000. We also wnat to get the HDD information. My CIR don't work so far. Does Kace need the information in what path the smartctl.exe is? I get a german failure message like this: The command & quot; smartctl & quot; is either misspelled or
could not be found. Do you have an idea for me? Thanks!!! - Denny_H 9 years ago