Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Windows XP

Windows XP Discuss the Microsoft Windows XP Operating System

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 08-07-2009, 04:50 AM
Harish U
Newsgroup Contributor
 
Posts: n/a
PagedPoolSize(Registry Key) in Windows XP

Hi,

I want to know if it is advisable to update the "HKEY_LOCAL_MACHINE
\System\CurrentControlSet\Control\Session Manager\Memory Management
\PagedPoolSize" registry key to (0xFFFFFFFF) in Windows XP to better
the low pool memory scenario. I also want to know about the safety of
modifying "PoolUsageMaximum" at the same location.

Reference KB article : http://support.microsoft.com/kb/312362/
This article is said to be applicable for the Servers , I like to know
if we face the same problem in WinXP , can we go ahead and make the
changes mentioned in the KB article ?

Plz provide some reference to support the answer(if you can !)

Thanks,
Harish
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 08-07-2009, 04:50 AM
  #2 (permalink)  
Old 08-07-2009, 08:40 AM
Gurpreet Singh
Newsgroup Contributor
 
Posts: n/a
RE: PagedPoolSize(Registry Key) in Windows XP

Keep the following in mind when you make the changes

1) The OS is designed to manage the resources well so change it carefully.
2) It will maximize the paged pool memory. Paged pool is the memory used by
kernel mode code and this can be paged if required. The change in registry
will force the system to start with the maximum pool it can accomodate. The
second registry basically avoids the cleaning of the pool at a certain limit.
3) If you have a paged pool leak ina kernel mode driver the issues you are
currently facing will only be delayed.

Please refer
http://blogs.technet.com/askperf/arc...resources.aspx

--
Regards
Gurpreet Singh


"Harish U" wrote:

> Hi,
>
> I want to know if it is advisable to update the "HKEY_LOCAL_MACHINE
> \System\CurrentControlSet\Control\Session Manager\Memory Management
> \PagedPoolSize" registry key to (0xFFFFFFFF) in Windows XP to better
> the low pool memory scenario. I also want to know about the safety of
> modifying "PoolUsageMaximum" at the same location.
>
> Reference KB article : http://support.microsoft.com/kb/312362/
> This article is said to be applicable for the Servers , I like to know
> if we face the same problem in WinXP , can we go ahead and make the
> changes mentioned in the KB article ?
>
> Plz provide some reference to support the answer(if you can !)
>
> Thanks,
> Harish
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 08-09-2009, 10:40 PM
Harish U
Newsgroup Contributor
 
Posts: n/a
Re: PagedPoolSize(Registry Key) in Windows XP

On Aug 7, 8:40*pm, Gurpreet Singh
<GurpreetSi...@discussions.microsoft.com> wrote:
> Keep the following in mind when you make the changes
>
> 1) The OS is designed to manage the resources well so change it carefully..
> 2) It will maximize the paged pool memory. Paged pool is the memory used by
> kernel mode code and this can be paged if required. The change in registry
> will force the system to start with the maximum pool it can accomodate. The
> second registry basically avoids the cleaning of the pool at a certain limit.
> 3) If you have a paged pool leak ina kernel mode driver the issues you are
> currently facing will only be delayed.
>
> Please referhttp://blogs.technet.com/askperf/archive/2007/03/07/memory-management...
>
> --
> Regards
> Gurpreet Singh
>
> "HarishU" wrote:
> > Hi,

>
> > I want to know if it is advisable to update the "HKEY_LOCAL_MACHINE
> > \System\CurrentControlSet\Control\Session Manager\Memory Management
> > \PagedPoolSize" registry key to (0xFFFFFFFF) in Windows XP to better
> > the low pool memory scenario. I also want to know about the safety of
> > modifying "PoolUsageMaximum" at the same location.

>
> > Reference KB article :http://support.microsoft.com/kb/312362/
> > This article is said to be applicable for the Servers , I like to know
> > if we face the same problem in WinXP , can we go ahead and make the
> > changes mentioned in the KB article ?

>
> > Plz provide some reference to support the answer(if you can !)

>
> > Thanks,
> >Harish


Hi Gupreet Singh,

thanks for your reply.

Its right , I have a Filesystem driver that its crashing due to lack
of Paged pool memory.
Buy you cant call it a leak. The Scenario is "An XP machine(where our
product is installed) is never rebooted or in other words the drive is
never disconnected for years. With every file operation we need to
hold that file in the Tree structure(which would use paged pool
memory). The same is true with NTFS of Windows OS. So in such a use
case it want to conform that it would not be un-acceptable to make the
changes mentioned in the KB article mentioned.

thanks,
Harish
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 08-09-2009, 11:00 PM
Gurpreet Singh
Newsgroup Contributor
 
Posts: n/a
Re: PagedPoolSize(Registry Key) in Windows XP

If a driver is crashing due to lack of pool resources, you have to check what
caused the lack of pool resources. unless you have /3gb switch the system
should have enough paged pool available to work fine. If not then there has
to be a driver which is eating up all the pool and make this driver fail ue
to lack of paged pool. It may be even this driver that may be asking of pool
but never releasing it back. In both scenarios there should be a pool leak
somewhere. If your system has fallen short of pool then setting up those
registry keys will only delay the problem and once this additional pool is
also consumed you will se ethe issue reoccur. My advice is to find out what
is using high pool and check if there is a pool leak.
--
Regards
Gurpreet Singh


"Harish U" wrote:

> On Aug 7, 8:40 pm, Gurpreet Singh
> <GurpreetSi...@discussions.microsoft.com> wrote:
> > Keep the following in mind when you make the changes
> >
> > 1) The OS is designed to manage the resources well so change it carefully..
> > 2) It will maximize the paged pool memory. Paged pool is the memory used by
> > kernel mode code and this can be paged if required. The change in registry
> > will force the system to start with the maximum pool it can accomodate. The
> > second registry basically avoids the cleaning of the pool at a certain limit.
> > 3) If you have a paged pool leak ina kernel mode driver the issues you are
> > currently facing will only be delayed.
> >
> > Please referhttp://blogs.technet.com/askperf/archive/2007/03/07/memory-management...
> >
> > --
> > Regards
> > Gurpreet Singh
> >
> > "HarishU" wrote:
> > > Hi,

> >
> > > I want to know if it is advisable to update the "HKEY_LOCAL_MACHINE
> > > \System\CurrentControlSet\Control\Session Manager\Memory Management
> > > \PagedPoolSize" registry key to (0xFFFFFFFF) in Windows XP to better
> > > the low pool memory scenario. I also want to know about the safety of
> > > modifying "PoolUsageMaximum" at the same location.

> >
> > > Reference KB article :http://support.microsoft.com/kb/312362/
> > > This article is said to be applicable for the Servers , I like to know
> > > if we face the same problem in WinXP , can we go ahead and make the
> > > changes mentioned in the KB article ?

> >
> > > Plz provide some reference to support the answer(if you can !)

> >
> > > Thanks,
> > >Harish

>
> Hi Gupreet Singh,
>
> thanks for your reply.
>
> Its right , I have a Filesystem driver that its crashing due to lack
> of Paged pool memory.
> Buy you cant call it a leak. The Scenario is "An XP machine(where our
> product is installed) is never rebooted or in other words the drive is
> never disconnected for years. With every file operation we need to
> hold that file in the Tree structure(which would use paged pool
> memory). The same is true with NTFS of Windows OS. So in such a use
> case it want to conform that it would not be un-acceptable to make the
> changes mentioned in the KB article mentioned.
>
> thanks,
> Harish
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Registry Cleaner - Download Free Registry Software voujnbwuotkd@yahoo.com Windows XP 18 07-27-2008 09:01 AM
What is Windows registry (Registry Keys) Omar Abid Windows XP 5 03-28-2008 10:20 AM
What is Windows registry (Registry Keys) Omar Abid Windows Vista 0 03-28-2008 08:30 AM
Windows Registry! Aravind Windows XP 1 02-20-2008 07:11 AM
windows locale detection using windows registry Options sunny Windows XP 1 11-08-2007 05:30 PM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 03:23 AM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0