.. installed in the PC from kernel level (2k, XP, ...)?
Values like 'small', 'medium' and 'large' doesn't help,
I need the number of bytes!

Thanks in advance, Stefan

Re: How I can get the size of physical memory .. by Don

Don
Tue Sep 06 07:50:08 CDT 2005

Are you looking for installed, or specified? You can specify /MAXMEM to
reduce the amount of memory the system uses, this is valuable for testing
purposes. The answer is different depending on what you want.


--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Remove StopSpam from the email to reply



"Stefan" <stefan@weidlich-software.de> wrote in message
news:en2Zk9tsFHA.3568@TK2MSFTNGP15.phx.gbl...
> .. installed in the PC from kernel level (2k, XP, ...)?
> Values like 'small', 'medium' and 'large' doesn't help,
> I need the number of bytes!
>
> Thanks in advance, Stefan
>
>



Re: How I can get the size of physical memory .. by Stefan

Stefan
Tue Sep 06 11:09:47 CDT 2005

I'm looking for the installed amount of memory.

"Don Burn" <burn@stopspam.acm.org> schrieb im Newsbeitrag
news:eP5wGGusFHA.904@tk2msftngp13.phx.gbl...
> Are you looking for installed, or specified? You can specify /MAXMEM to
> reduce the amount of memory the system uses, this is valuable for testing
> purposes. The answer is different depending on what you want.
>
>
> --
> Don Burn (MVP, Windows DDK)
> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> Remove StopSpam from the email to reply
>
>
>
> "Stefan" <stefan@weidlich-software.de> wrote in message
> news:en2Zk9tsFHA.3568@TK2MSFTNGP15.phx.gbl...
> > .. installed in the PC from kernel level (2k, XP, ...)?
> > Values like 'small', 'medium' and 'large' doesn't help,
> > I need the number of bytes!
> >
> > Thanks in advance, Stefan
> >
> >
>
>



Re: How I can get the size of physical memory .. by Don

Don
Tue Sep 06 11:19:23 CDT 2005

Take a look at
"\REGISTRY\MACHINE\HARDWARE\RESOURCEMAP\System Resources\Physical Memory"

This contains a resource list of the memory regions on the system.


--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Remove StopSpam from the email to reply



"Stefan" <stefan@weidlich-software.de> wrote in message
news:eOHkn1vsFHA.1172@TK2MSFTNGP11.phx.gbl...
> I'm looking for the installed amount of memory.
>
> "Don Burn" <burn@stopspam.acm.org> schrieb im Newsbeitrag
> news:eP5wGGusFHA.904@tk2msftngp13.phx.gbl...
>> Are you looking for installed, or specified? You can specify /MAXMEM to
>> reduce the amount of memory the system uses, this is valuable for testing
>> purposes. The answer is different depending on what you want.
>>
>>
>> --
>> Don Burn (MVP, Windows DDK)
>> Windows 2k/XP/2k3 Filesystem and Driver Consulting
>> Remove StopSpam from the email to reply
>>
>>
>>
>> "Stefan" <stefan@weidlich-software.de> wrote in message
>> news:en2Zk9tsFHA.3568@TK2MSFTNGP15.phx.gbl...
>> > .. installed in the PC from kernel level (2k, XP, ...)?
>> > Values like 'small', 'medium' and 'large' doesn't help,
>> > I need the number of bytes!
>> >
>> > Thanks in advance, Stefan
>> >
>> >
>>
>>
>
>



Re: How I can get the size of physical memory .. by Stefan

Stefan
Tue Sep 06 11:34:42 CDT 2005

Thank you for your tip.

"Don Burn" <burn@stopspam.acm.org> schrieb im Newsbeitrag
news:eQoFD7vsFHA.3264@TK2MSFTNGP12.phx.gbl...
> Take a look at
> "\REGISTRY\MACHINE\HARDWARE\RESOURCEMAP\System Resources\Physical Memory"
>
> This contains a resource list of the memory regions on the system.
>
>
> --
> Don Burn (MVP, Windows DDK)
> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> Remove StopSpam from the email to reply
>
>
>
> "Stefan" <stefan@weidlich-software.de> wrote in message
> news:eOHkn1vsFHA.1172@TK2MSFTNGP11.phx.gbl...
> > I'm looking for the installed amount of memory.
> >
> > "Don Burn" <burn@stopspam.acm.org> schrieb im Newsbeitrag
> > news:eP5wGGusFHA.904@tk2msftngp13.phx.gbl...
> >> Are you looking for installed, or specified? You can specify /MAXMEM
to
> >> reduce the amount of memory the system uses, this is valuable for
testing
> >> purposes. The answer is different depending on what you want.
> >>
> >>
> >> --
> >> Don Burn (MVP, Windows DDK)
> >> Windows 2k/XP/2k3 Filesystem and Driver Consulting
> >> Remove StopSpam from the email to reply
> >>
> >>
> >>
> >> "Stefan" <stefan@weidlich-software.de> wrote in message
> >> news:en2Zk9tsFHA.3568@TK2MSFTNGP15.phx.gbl...
> >> > .. installed in the PC from kernel level (2k, XP, ...)?
> >> > Values like 'small', 'medium' and 'large' doesn't help,
> >> > I need the number of bytes!
> >> >
> >> > Thanks in advance, Stefan
> >> >
> >> >
> >>
> >>
> >
> >
>
>



Re: How I can get the size of physical memory .. by r_konjeti

r_konjeti
Tue Sep 06 15:09:19 CDT 2005

In user mode GlobalMemoryStatusEx () can be used. I used this function
and sent physical memory size to driver. I was trying to implement some
smart buffering. But it turned out that I was reinventing some thing.