2

I would like to know major hardware supported operating system(generic) functions or the categories of that. Is there any link or reference materials I can refer?

Sanjeevakumar Hiremath
  • 10,985
  • 3
  • 41
  • 46
Nix
  • 41
  • 3

2 Answers2

1

I would try Wikipedia's comparison of operating systems.

plaes
  • 31,788
  • 11
  • 91
  • 89
0

You can use the WMI (Windows Management Instrumentation) .NET library. http://msdn.microsoft.com/en-us/library/aa394582%28v=vs.85%29.aspx

You can loop through ManagementObjects to get information on the drivers currently installed...

http://msdn.microsoft.com/en-us/library/aa394354%28v=VS.85%29.aspx

Also see this post: How can I get the date and version of drivers in C#?

Community
  • 1
  • 1
JeremyS
  • 13
  • 3