system
January 13, 2011, 12:19am
1
(imported topic written by SystemAdmin)
Hello everyone,
Does anyone know how to identify the hard disk type, such as IDE, SATA or SCSI of a hard disk via BigFix?
I could not find this information on WMI in order to create a specific analysis.
Thank you and best regards,
Ricardo
Noah
January 13, 2011, 3:39am
2
(imported comment written by NoahSalzman)
Do you have the “Hardware Information (Windows)” analysis turned on? It’s part of the “BES Inventory and License” site.
It uses the query:
if (exists wmi) then (string values of selects “Caption from Win32_DiskDrive” of wmi ) else (“N/A”)
leewei
January 13, 2011, 3:45am
3
(imported comment written by Lee Wei)
InterfaceType attribute from Win32_DiskDrive seems like it should do the job.
http://msdn.microsoft.com/en-us/library/aa394132(v=VS.85).aspx
system
January 13, 2011, 9:47pm
4
(imported comment written by SystemAdmin)
Hello Noah and Lee, thanks for your responses.
The existing query on Hardware Information (Windows) Analysis returns (in my case) the Manufacturer and model of the drive but not the type of drive. I can tell the type of the drive based on the model in my case but this is not what the customer is looking for because not all models will have this information available.
The InterfaceType on Win32_DiskDrive WMI class returns IDE for both IDE and SATA disks so it does not work either for this purpose.
Thank you and best regards,
Ricardo
Noah
January 13, 2011, 10:08pm
5
(imported comment written by NoahSalzman)
A quick google search of “wmi ide sata” turns up this:
Hello world, start a small project to migrate windows installation to new hardware. Need some pieces, and i think Autoit is best solution to automatize this task. Using Autoit : - Is possible to obtain info about hardware in general ? - Is possible...
Which leads us to:
string values of selects “* from win32_scsicontroller” of wmi
and
string values of selects “* from win32_idecontroller” of wmi
system
January 24, 2011, 7:53pm
6
(imported comment written by SystemAdmin)
Does this mean a IBM update to the Hardware Information analysis is in the works…
Noah
January 24, 2011, 9:53pm
7
(imported comment written by NoahSalzman)
It’s now bug (feature request) #40904 .