vote up 3 vote down star
1

I asked a somewhat related question but I want it to make it more concrete and 'programming' oriented, so here it goes:

Does any body know, if there is a .NET, JAVA or any other Framework, library, .jar file or what ever: to access S.M.A.R.T. Statistics?

Thanks!

flag

You should maybe reword your question, judging from the accepted answer you want this to work for windows only. – Jan Jungnickel Jul 19 at 11:01

2 Answers

vote up 4 vote down check

You can get SMART statistics from .Net via the System.Management and WMI class "MSStorageDriver_ATAPISmartData".

Here is a short example that I created for you. Start a new console project and add a reference to the System.Management assembly, then paste this into Program.cs:

using System;
using System.Collections.Generic;
using System.Text;
using System.Management;

namespace GetSMART
{
    class Program
    {
    	static void Main(string[] args)
    	{
    		ManagementObjectSearcher searcher = 
    		new ManagementObjectSearcher(
    			"root\\WMI",
    			"SELECT * FROM MSStorageDriver_ATAPISmartData"
    		);

    		foreach (ManagementObject item in searcher.Get())
    		{
    			foreach( PropertyData prop in item.Properties )
    			{
    			Console.WriteLine("{0} = {1}",
    				prop.Name, prop.Value);
    			}
    		}

    		Console.ReadLine();
    	}
    }
}
link|flag
Beautiful, thank you!... too bad it isn't Java hehe. – ramayac Sep 27 '08 at 19:34
No problem. FYI, I just searched for Java WMI and there are a lot of articles out there. – wizlb Sep 27 '08 at 21:27
vote up 0 vote down

There is a complete article on using WMI to do exactly what you ask for in C# and its got info on reverse engineering the SMART data, what the measurements mean and some links to articles on disk drive failure Smart and WMI

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.