Adobe reader x eats up my memory

I run my adobe reader x (10.1.1) on windows 7. In most cases, when i open the first pdf file, everything works fine. Problem occurs when i try to open the second one. The reader stop working and the memory usage goes up to like 1.6 Gb and keeps increasing. I have to end the prcess before it eats up all my memory. But for some other files, like the pdf file from http://unicode.org/charts/PDF/U0370.pdf, i cannot open at all. Is it a universal problem or just a special case happen to me?
Thank you for the reply.

it happens to both. I can see multiple instances of Adobe Reader, only one of them is acquiring large amount of memory
As for the pdf i linked, when i tried to opening it, everything stucked. Two processes of adobe reader were shown in task manager, and one of them used up almost all memeory. So i had to terminated it. For other pdf files which caused problems (when they are opend as a second pdf file), i can always reopen it as a first pdf file without problem. This one is different; i can never open it, no matter open it directly or download it and open it locally. i don't know why.
One thing stranged is that this issue never happened before until two days ago, i used to open 10+ pdf file for paper reviewing.
Thanks for your reply.

Similar Messages

  • Nokia n8 adobe reader prob

    Had my nokia n8 2 weeks and downloaded a bus timetable .went to use adobe reader and when it scanned memory the screen goes all blurred when scrolling down but it works when i find the actual file .i have updated my phone using onboard updater

    Because there is a new version available on the store..

  • Memory Leak in Adobe Reader 9?

    Hello,
    I have a C# application with a WebBrowser component in a Form and it opens a certain number of new browser pages with a link to a PDF file.
    When I close the main program (Not the individual  forms with the browser links for PDFs), I get an Application Error : The instruction "" referenced memory at "". The memory could not be read.
    I was using Adobe Reader 9.1.2 but then I uninstalled it and installed Reader 8.1 and I am not getting this error anymore when closing the program. Is there a known issue with memory management in Reader 9? It seems like as I close each form, the Reader still stays in memory and does not release its resources.
    Thanks,
    Igor

    Reader generally stays in memory to be able to work faster the next time it is needed. That was true in version 8 as well. There is something else going on. Please continue this conversataion in the SDK forum.

  • Memory lead in Adobe Reader 9.3

    Appears like there is a memory leak in Adobe reader 9.3.0 on Windows Vista. When I open a large document (>36MB) Adobe starts hogging memory - over 1.4GB - and choking the PC) and then it hangs the computer. As soon as adobe is killed (the Program i.e. AcreRd32.exe not the Application i.e. the pdf document), the memory gets freed up and choking is gone. Anyone else noticed this - any fixes from Adobe for this - becoming a pain to live with. The earlier version was far better - didn't cause these issues. This issue has started after I installed the latest update as prompted by Adobe.

    Should have been memory leak - not "lead"!

  • Adobe Reader 8 memory leak

    There seems to be a private byte memory leak with Adobe Reader 8.0.0 and 8.1.2 (tested both) when you try to print a PDF document. If you monitor the private bytes usage of the AcroRD32.exe with perfmon and then try to print you will see the memory usage jump and it does not come back down after the print job. In fact, it keeps on rising as you keep on sending a new print job. The only way to release the memory is to close the document and reopen it.

    >I have more than 700 MB virtual memory.
    That's probably not enough for normal operations. A couple of
    gigabytes is safer.
    There may be a problem, though. This doesn't sound like normal
    behaviour. Acrobat may be cacheing text - does the size stop
    increasing if you search for something, and find it, on the LAST page?
    Aandi Inston

  • Just download Adobe Reader XI for windows 8.1,  it doesn't work.  My OS is Windows 8.1 64-bits.  Two dialogues appear as  1.) AcroRd32.exe Error, The instruction at 0x9068675f reference memory at 0x9068675f. The memory could not be written. Click on OK to

    Just download Adobe Reader XI for windows 8.1,  it doesn't work.  My OS is Windows 8.1 64-bits.  Two dialogues appear as  1.) AcroRd32.exe Error, The instruction at 0x9068675f reference memory at 0x9068675f. The memory could not be written. Click on OK to terminate the program.  2.) Adobe Reader ha stopped working, a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution ia available.

    What is the Reader XI version you installed?
    Does this also happen when you open Reader by itself?  If not, can you try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].

  • Adobe Reader 9 Memory Leak?

    Hello,
    I have a C# application with a WebBrowser component in a Form and it opens a certain number of new browser pages with a link to a PDF file with these arguments appeneded: "#toolbar=0&navpanes=0"
    When I close the main program (Not the individual  forms with the browser links for PDFs), I get an Application Error : The instruction "" referenced memory at "". The memory could not be read.
    I was using Adobe Reader 9.1.2 but then I uninstalled it and installed Reader 8.1 and I am not getting this error anymore when closing the program. Is there a known issue with memory management in Reader 9? It seems like as I close each form, the Reader still stays in memory and does not release its resources. I have tested this on 3 computers and I am getting the same results. I am running XP SP3.
    Thanks,
    Igor

    Smile,
    I tried that solution in both C# and managed C++, and it occasionally causes an AccessViolationException in the Dispose method.
    I can only assume that this exception is thrown because I delete acrobat and free the unused libraries, and then dispose goes to call the library or libraries to delete the ActiveX object, and the libraries are not there.
    I noticed something that seems relevant: It is easy to cause this AccessViolationException by quickly and repeatedly calling the LoadFile method on the acrobat control. Does this mean that all will be well if I avoid calling LoadFile at too small an interval? Is there some kind of event or callback I can use to tell me that it is now safe to call LoadFile again? I will look into this, but would definitely appreciate any input.
    ----------------------------details about repeating LoadFile calls----------------------------
    When LoadFile is first called, a few first chance exceptions of this look come up:
    First-chance exception at 0x7c81eb33 (kernel32.dll) in program.exe: Microsoft C++ exception: _ASExceptionInfo at memory location 0x03something.
    When LoadFile is called quickly and repeatedly, a bunch of these first chance exceptions are generated. They look exactly the same in C# as in MC++. It is when a lot of these are generated, that subsequently closing the program is most likely to give an AccessViolationException.
    ----------------------------AccessViolationException details----------------------------
    In C#, the output regarding the exception is:
    First-chance exception at 0x79e9501d (mscorwks.dll) in  BasicIacOCXCS.exe: 0xC0000005: Access violation reading location  0x035fa1c0.
    The call stack on crash is:
    PDFminimalCaseCSharp.exe!PDFminimalCaseCSharp.Form1.Dispose(bool disposing = true) Line 20 + 0xc bytes
    System.dll!System.ComponentModel.Component.Dispose() + 0x12 bytes
    etc...
    In C++, the solution posted at stackoverflow looks like this:
    [System::Runtime::InteropServices::DllImport("ole32.dll")]
    extern void CoFreeUnusedLibraries();
    System::Void Form1_FormClosing(System::Object^  sender, System::Windows::Forms::FormClosingEventArgs^  e)
        if(axAcroPDF1 != nullptr)
            delete axAcroPDF1;
            Application::DoEvents();
            CoFreeUnusedLibraries();
    This code causes the same occasional "AccessViolationException in System.Windows.Forms.dll".
    The managed C++ call stack:
    1003a1c0()
    user32.dll!77d48709()   
    user32.dll!77d487eb()   
    [Managed to Native Transition]  
    System.Windows.Forms.dll!System.Windows.Forms.UnsafeNativeMethods.DestroyWindow(System.Run time.InteropServices.HandleRef hWnd) + 0x10 bytes  
    System.Windows.Forms.dll!System.Windows.Forms.NativeWindow.DestroyHandle() + 0x7a bytes  
    System.Windows.Forms.dll!System.Windows.Forms.Control.DestroyHandle() + 0x150 bytes  
    System.Windows.Forms.dll!System.Windows.Forms.Control.Dispose(bool disposing = true) + 0x1da bytes  
    System.Windows.Forms.dll!System.Windows.Forms.ContainerControl.Dispose(bool disposing) + 0x1f bytes  
    System.Windows.Forms.dll!System.Windows.Forms.Form.Dispose(bool disposing) + 0x273 bytes  
    PDFminimalCase.exe!PDFminimalCase.Form1.Dispose(bool  = true) + 0x55 bytes  
    System.dll!System.ComponentModel.Component.Dispose() + 0x12 bytes  
    etc...

  • How do I overcome it when Adobe Reader says "Memory Full" and won't open attachments?

    When I try to open email attachments with adobe reader it refuses with the comment, "Memory full". Hoqw do i fix this problem? I have tried deleting some things I scanned in as Adobe but this has not worked.---mintpie---

    What is your Reader version?  What is your email client?  If it's web-based mail, in what browser?
    Is the message really just "Memory full"?  Can you post a screenshot of that message?
    Can you download that attachemtn to your local disk first, then open it from there?

  • Memory leak on latest Adobe Reader 8.1.2 Win XP SP2

    Dear Adobe Developers,
    I have encountered a strange problem. I open a PDF file of size about 16.5 MB, I search trough it and then the memory allocated starts steadily growing until it fills out the entire RAM and the virtual memory as well. Strange thing is this only happens after I perform a search through the file; if I don't do it, all stays within normal. I was wondering if it is not a memory leak of some kind? I use Adobe Reader 8.1.2 on Win XP with Service Pack 2 on Celeron 1.7 GHZ, 256 DDR RAM, 320 GB HDD ect .. Normally the RAM occupied by the OS itself is only about 100 MB so there are ~150MB left free. But they seem not to be enough even when we add to them the virtual memory.
    Greetings,
    Georgi Popov, BG

    >I have more than 700 MB virtual memory.
    That's probably not enough for normal operations. A couple of
    gigabytes is safer.
    There may be a problem, though. This doesn't sound like normal
    behaviour. Acrobat may be cacheing text - does the size stop
    increasing if you search for something, and find it, on the LAST page?
    Aandi Inston

  • Out of memory message on iPad 3 in Adobe reader

    When viewing a PDF on the iPad 3 with the Adobe reader app I get a message saying "out of memory" whenever I open a PDF bigger than about 20mb.
    Any reason or a bug? I have loads of memory left on the device.

    We just released a new version that should fix most out of memory issues on the new iPad. It also adds a host of new features like commenting, form filling and ink signatures. Please update and let us know what you think.
    http://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8

  • I bought a 5 yr old Mac G5 OSx 10.4.11, 2 GHz intel Core 2 Duo processor, 1GB 667 MHz DDR1 SDRAM memory.  It works fine but I can't get Thunderbird, Flash Player or Adobe reader to install -- it shows up on desktop as download but not App folder. Why?

    Question:  I bought a 5 yr old Mac G5 OSx 10.4.11, 2 GHz intel Core 2 Duo processor, 1GB 667 MHz DDR1 SDRAM memory.  It works fine but I can't get Thunderbird, Flash Player or Adobe reader to install -- it shows up on desktop as download but not App folder. Why?

    The downloads are probably .dmg files (disk images).  You would open the disk image (double-click it) to find the application or an installer.  If it's the application itself, you then drag the application to your Applications folder to "install" it.  If it's an installer, double-click the installer to run the installer that installs the application.
    NOTE:  If you iMac is Intel, it's not a PPC G5.

  • Adobe Reader X and Windows 7 Enterprise Memory Leak

    Hi I am using Adobe Reader X with Windows 7 enterprise when reading a 8000 page document when I do a search I notice that the memory on my machine starts to creep up typically 1Mb per search this will continue to rise to over 300Mb as the document is used until it reaches a point that it freezes the machine, The only way to recover is Ctrl-Alt-Delete and cancel the task. Has this been observed by other users?

    Good day,
    Could you provide some additional details about both the file and your system's configuration?
    What version of Adobe Reader X do you have installed? (Help > About Adobe Reader)
    If you haven't updated to 10.0.3, please do so and see if the issue persists.
    How was the PDF file you're searching created?  (File > Document Properties > What does the PDF Producer line say?)
    Are you experiencing this with multiple files?
    Have you installed SP1 for Windows 7?
    Regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • Why has adobe reader stopped reading the pdf files on external SD memory?

    I have Samsung not 2 with  external sd memory that I stored all my pdf files into it , I haven't had any problem with using Adobe reader for reading all files from  my sd memory but for unknown reason I can't see all pdf files from sd anymore. In order to reach the files ,I have to use the folders view tab in the adobe reader instead of all pdf files view  .
    Thanks a lot for any feedback.

    On Android OS 4.1 - 4.3 (Jelly Bean) or older, Adobe Reader for Android version 11.2.x has a known defect in the "All PDFs" view. The All PDFs view does not show the files and folders on an external SD card. A workaround is to use the Folder View instead of the All PDFs view. We have fixed the defect and plan to include the fix in the next release of Reader for Android.
    On Android OS 4.4 (KitKat) only, neither All PDFs view nor Folder View shows any files or folders on an external SD card.  Reader cannot save any changes to the files on an external SD card, either.  We are still working on fixing the problems.  In the meantime, please copy the files from your external SD card to your device's internal storage (e.g. /storage/emulated/0/Documents/...) using a File Manager/Browser app or use a cloud storage service (Acrobat.com, Dropbox, Google Drive, etc.) to store files.  Sorry for the inconvenience.

  • I have a new hp tower running windows 8.1 and have been trying to install the adobe reader.  The installer downloads (1meg) and I choose to run it but it just sits with an empty screen.  I've checked task manager and it takes up memory but does nothing.

    I have a new hp tower running windows 8.1 and have been trying to install the adobe reader.  The installer downloads (1meg) and I choose to run it but it just sits with an empty screen.  I've checked task manager and it takes up memory but does nothing.  After letting it run for 3-4 minutes I kill the task.  What can I do to get the reader installed on this machine?  I've tried using chrome, firefox and explorer and get the same results with each.

    Try the offline installer from http://get.adobe.com/reader/enterprise/

  • Adobe Reader 8 open pdf very slow and used lots of memory

    I use the Adobe Reader 8 to open a pdf(the pdf size not bigger than 100k)
    but when i open it, it take long time to load it and use so many memory,
    also, i do not have this problem on using adobe reader 7, would any one know the reason?
    Thx for everyone.

    Alright, i know, you can't bare to part with it, you need it, etc.etc...
    try here, its an adobe reader speed up program
    http://software.bootblock.co.uk/?id=adobereaderspeedup
    It's a bit old though.
    Also, do you have the stupid adobe startup program for reader running? This speeds up the loading of adobe reader while simultaneously slowing down your whole system. Great tradeoff.
    Get foxit!
    Adobe sucks!

Maybe you are looking for

  • How to send a large file in XI ?

    How to send a large file in XI ?

  • How can I get iMovie for a G5 running Leopard, but no Intel processor

    Used to have Imovie when I had Tiger processor but it's gone with upgrade to Leopard. Can't get iLife because no Intel processor. Now what?

  • Get DirectorySize In java

    Hi, I created progam to get the Folder Size in which i'm transversing between folders and fetching the each file sizes. I'm able to get the respective size of the folder, but when i'm trying to run this application for the Network Folder where it has

  • Web trx: edit service test session parameters - separator?

    EM 10.2... I'm trying to monitor performance of Oracle iProcurement, and the tech stack it uses (OA Framework) employs multiple session parameters (or mutiple names for the same one) -- transaction_id and _tid . So I need to use both of these as sess

  • 1.6.2 remaining schedule

    VHO01   Carrollton, TX VHO02   Temple Terrace, FL VHO03   Pomona, CA VHO04   Silver Spring, MD VHO05   Queens, NY VHO06   Burlington, MA VHO06a Rhode Island VHO07   Freehold, NJ VHO08   Philadelphia, PA VHO09   Richmond, VA VHO09a Norfolk, VA VHO10