c#

i need to access the SMART technology of the hard disk using C# how it can be done

is there any api for this as there is WMI api for speed of the cpu fan

[167 byte] By [ravi123] at [2007-12-25]
# 1

C# has no knowledge about your EBIOS and HARD DISK internal affairs. More info about SMART failure prediction system is on the SMART Technology site. Doing it yourselt, you must write kernel model driver for ring 0 to get read/write access to hard disk command registers. Then you may probably call your driver for prediction data from C# ?

Peca55 at 2007-9-3 > top of Msdn Tech,Visual C#,Visual C# Language...
# 2
thats correct, you can't access low level data from C#. You would have to go low level or use some API to do this
ahmedilyas at 2007-9-3 > top of Msdn Tech,Visual C#,Visual C# Language...