hard drive type

  • Thread starter Thread starter mfleet1973
  • Start date Start date
M

mfleet1973

Hello.

How do I get the type of harddrive (by type I mean whether it's EDI,
SATA, etc.). Is it possible to find out?

Thanks a lot.

Mike.
 
:
Hello.

How do I get the type of harddrive (by type I mean whether it's EDI,
SATA, etc.). Is it possible to find out?

Thanks a lot.

Mike.

in .NET 2.0 there is a DriveInfo class in the System.IO namespace...

For Each curDrive As DriveInfo In My.Computer.FileSystem.Drives
 
Kelly,

Are you sure that it gives the S-ATA,

I have a very generic WMI program that search for all WMI properties.

In that the only information I could get with Windows XP was that it was an
IDE drive and that the motherboard part had Ultra DMA IDE ports.

Sata is released after the introduction of XP, maybe will it be showable in
Vista.

However I am currious and have tested your code, I could not find any
property in the driveinfo that would give me this information.

Can you enlighten us a little bit more.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top