The Windows API includes all the functions you need to retrieve and display information about the CPU the machine is equipped with. However, if you’re running under Windows NT or Windows 2000, you don’t need to make complicated API calls, because this information is already available in several environment variables, and you just need to extract it with the Environ$ function:
' this code works only under Windows NT and 2000Debug.Print "Number of CPUs: " & Environ$("NUMBER_OF_PROCESSORS")Debug.Print "Processor Architecture: " & Environ$("PROCESSOR_ARCHITECTURE")Debug.Print "Processor Identifier: " & Environ$("PROCESSOR_IDENTIFIER")Debug.Print "Processor Level: " & Environ$("PROCESSOR_LEVEL")Debug.Print "Processor Revision: " & Environ$("PROCESSOR_REVISION")
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























