How can we find the amount of CPU cache memory a given machine has.

Assume Windows XP and a Intel Core Duo processor..

link|improve this question

40% accept rate
Are you talking about CPU cache? Which one (L1, L2, etc)? Do you need to get these values programatically (ie: through the Windows API)? – NullUser Aug 17 '10 at 4:24
Unless you need to do this programmatically, this question is better asked on SuperUser. – Paul Sasik Aug 17 '10 at 4:28
yes CPU Cache.?? – pvaju896 Aug 17 '10 at 4:31
i dont need it through programmatically..!! just need to find out- how much is the CPU cache for my system-JUST TO VIEW..!! – pvaju896 Aug 17 '10 at 4:33
feedback

migrated from stackoverflow.com Aug 17 '10 at 15:50

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 1 down vote accepted

You can use Cpu-z to find all the relevant information about your processor's cache. Look for the "Cache" section in the Cpu-z's main tab.

link|improve this answer
Where to download this from..?/ – pvaju896 Aug 17 '10 at 4:34
you can click on the link in Mikael's answer. – muddybruin Aug 17 '10 at 4:37
yup its nice,,!! ThanX bro..!! – pvaju896 Aug 17 '10 at 4:54
Is there any other way to get this INFO..?? by using only WINDOWS XP OS ..? – pvaju896 Aug 17 '10 at 5:01
feedback

If you have installed Windows Powershell you can use the command: get-WMIObject Win32_Processor

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.