How to determine the chipset of the computer my program is running using C #

I need my code to behave differently depending on the chipset of the computer it runs on. How to define this with C #.

In particular, Intel 945 versus 965.

+3
source share
2 answers

If you can get this information, you can get it through WMI. Here's a tool that automatically generates C # code to execute any WMI request:

WMI Code Creator v1.0

( VBScript, " ", # VB.NET. " , :".)

, , WMI , , , , .

, , , WMI Code Creator .

+1

:

System.Environment.GetEnvironmentVariable("PROCESSOR_ARCHITECTURE");
-1

Source: https://habr.com/ru/post/1730286/


All Articles