devxlogo

Retrieve CPU information the simple way (NT/2000 only)

Retrieve CPU information the simple way (NT/2000 only)

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")

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist