C#
--
Questions
--
Followers
Top Experts
hard-drive information via WMI
when i perform
      ManagementObjectSearcher searcher = new ManagementObjectSearcher(@ "root\WMI" , "SELECT * FROM MSStorageDriver_ATAPISmart Data");
      foreach (ManagementObject o in searcher.Get())
      {
      }
does anyone know what information is contained in the bytes for o["VendorSpecific"] for a Seagate ST3250820AS drive?
I am trying to find the temperature.
In addition, if i have multiple drives, how do i determine which drive the query is being executed against?
Thanks for the help.
      ManagementObjectSearcher searcher = new ManagementObjectSearcher(@
      foreach (ManagementObject o in searcher.Get())
      {
      }
does anyone know what information is contained in the bytes for o["VendorSpecific"] for a Seagate ST3250820AS drive?
I am trying to find the temperature.
In addition, if i have multiple drives, how do i determine which drive the query is being executed against?
Thanks for the help.
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
I don't believe that the vendor-specific data is publicly available.
Bob
Bob
ASKER CERTIFIED SOLUTION
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
C#
--
Questions
--
Followers
Top Experts
C# is an object-oriented programming language created in conjunction with Microsoft’s .NET framework. Compilation is usually done into the Microsoft Intermediate Language (MSIL), which is then JIT-compiled to native code (and cached) during execution in the Common Language Runtime (CLR).