Failure of ACROBAT DLL

About a week ago, I was trying to print my Taxes using the PDF function of my adoby reader.  I received the following message: ACROBAT failed to load core DLL.  I have tried to reload ADOBY READER, load a new ACROBAT program & even attempted to load ACROBAT PRO.  The first two said they loaded correctly but no joy, & the PRO wont let me validate the program.  How do I get my PDF program fixede in order to complete my taxes & print any needed documents.

When the core library does not work anymore, Acrobat / Reader can no longer run because the components it depends on do not load.
> Enable the hidden Admin Account on Windows 7 ( Ref :  http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-adminis trator-account-on-windows-vista/ )
> Disable all Non-Microsoft Startup Services. (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-servic es-windows.html )
> Disable all the Antivirus softwares temporarily from the computer.
This error is known for conflicting Antivirus softwares like CA, Norton,Mc Afee etc.
> Delete the all the contents in the locations mentioned in the doc :
http://helpx.adobe.com/acrobat/kb/problems-uninstalling-reader.html
Note: It's possible that your system doesn't contain all of the files and folders listed in this document. If you do not find a listed file or folder on your system, proceed to the next file or folder on the list.
> Reboot the computer and install Adobe Reader 11 and check

Similar Messages

  • APPCRASH in Acrobat.dll after adding annots with AFExecuteThisScript()

    I have a C# app that displays PDFs in a WebBrowser control.   I also have a plug-in that loads annotations into the PDF (i.e. doc.addAnnot(<propertys>)) via calls to AFExecuteThisScript().  It works; the annots are loaded successfully.  However, whenever I do this, I get an APPCRASH after the app has terminated. Since it happens after the app exits, it's out of the debugger's scope.
    Since this problem happens only after my plug-in adds annots to the PDF, I'm thinking that something Javascript-related is not being released before the app exits.  I've tried doc.dirty = false after adding each annot, and also docClose() in my plug-in's AVDocWillClose callback, but it doesn't do any good.
    This is NOT caused by AFExecuteThisScript() per se.  In other words, I can do AFExecuteThisScript with or without a return value and there's no APPCRASH.  It only seems to happen when I modify the PDF (i.e. add annots) via AFExecuteThisScript().
    This is not a showstopper for me but merely an irritant, because it always happens when the application terminates.  Incidentally, it did not seem to happen in Acrobat 8.
    Here is the problem signature that is produced in VS 2005 after the app terminates.
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    DrsDisposition.vshost.exe
      Application Version:    8.0.50727.42
      Application Timestamp:    4333d898
      Fault Module Name:    Acrobat.dll
      Fault Module Version:    9.3.0.148
      Fault Module Timestamp:    4b3074b9
      Exception Code:    c0000005
      Exception Offset:    0013286c
      OS Version:    6.1.7600.2.0.0.256.48
      Locale ID:    1033
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    Can anyone help?
    Thanks.

    I modified my plug-in to enable it when I open a PDF from the file system with Acrobat.exe, and then create a single annot with AFExecuteThisScript().
    Everything works fine, the annot is created, and there is no APPCRASH when I quit Acrobat.
    I just needed to modify my AVDocDidOpen and AVIdle callbacks to make this work (to allow me to work with PDFs opened in Acrobat.exe from the file system), so everything else about the plug-in (initialization through cleanup) is the same.
    One of the last lines of output was:
         'Acrobat.exe': Unloaded 'C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.dll'
    It seems to me that the problem is related to the WebBrowser control, which apparently does not release Acrobat.dll when it destructs.  I've tried manually releasing Acrobat.dll in my app code after Application.Run(theForm); returns, i.e.
         IntPtr handle = GetModuleHandle("Acrobat.dll");
         if (!handle.ToString().Equals("0"))
              FreeLibrary(handle);
    but that causes the app to crash on FreeLibrary().
    I wonder if it would make any difference if I were to manually load Acrobat.dll in my code, rather than waiting for the WebBrowser control to do it when it opens the PDF.  I noticed that one of the first output lines from Acrobat.exe (after the windows libraries are loaded) is
    ADOBE_READLOGGER_CMD:COMMENT:BeforeOROADOBE_READLOGGER_CMD:COMMENT:AfterORO'Acrobat.exe': Loaded 'C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.dll', No symbols loaded.
    Incidentally, I'm unable to debug my plugin when I run my app in VS 2005.  There's no process that I can attach my plug-in debugger to, probably because Acrobat 9 uses in-process DLLs to render PDFs in browsers.

  • Delay unloading Acrobat dlls when using Acrobat 9

    In our Java desktop application, we use Acrobat 9 to display a pdf file.
    This pdf is opened in another window. When the window is closed the acrobat dlls loaded are expected to close by itself so that the corresponding javaw process can close.
    The javaw process is not closing since the acrobat dlls are NOT closed automatically. It was found the dlls are unloaded after around 30 second.
    When tried with Acrobat 8 it worked perfectly.
    Has anyone come across the dll unload issue with Acrobat 9?
    Can you suggest a solution?

    Wrap the Adobe functionality in an executable.
    Manage that from your main java app via Runtime.exec/ProcessBuilder.
    Provide a communication interface so the two can interact.
    Your main app can exit at any time. The secondary app will exit after the delay without being visible to the users.

  • Creating Certificate using Acrobat dll in C# program

    Hello,
    I need to create a certificate, basically .pfx file in C#. I used makecert tool to create the certificate first and then export it into .pfx file through command line. My attempt was successful. Then I used the .pfx file to encrypt a pdf using iTextSharp. The pdf is encrypted successfuly but when i try to open the pdf,  Acrobat/Reader shows a message "You do not have access rights to this encrypted document". I intalled the .pfx file but the problem still remains.
    Can anyone please guide me what am I doing wrong. I used the following code from command prompt to create a certificate and then export the certificate to a pxf file
    Create certificate - makecert -r -pe -n "CN=My CA" -ss CA -sr CurrentUser -a sha1 -sky signature -sv MyCA.pvk MyCA.cer
    Export to pfx - pvk2pfx -pvk MyCA.pvk -spc MyCA.cer -pfx MySPC.pfx -po <password>
    Is it possible to create a pfx file using acrobat dll in C#??
    Please help me, its urgent.
    Thanks in advance!

    No, there are no APIs for working with certificates from C#.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Tue, 13 Dec 2011 22:35:57 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Creating Certificate using Acrobat dll in C# program
    Re: Creating Certificate using Acrobat dll in C# program
    created by poortip87<http://forums.adobe.com/people/poortip87> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4083490#4083490

  • Could anyone please let me know how to set a ICC profile with Acrobat dlls using Csharp or VB

    Could anyone please let me know how to set a ICC profile with Acrobat dlls using Csharp or VB

    Cant we even use the dlls in an application?
    In order to automate Acrobat, you need to have Acrobat installed. There is
    nothing you can do with just the DLLs. As was already stated, Acrobat is
    not licensed for use on a server, but regardless of that, it's also
    not technically suitable for server use. You need to find a solution
    outside of Acrobat to solve your problem.
    It also seems that you don't have a good understanding of what is going in
    inside a PDF file. PDF is a very complex file format, and based on
    your questions
    and followup questions, you need to spend a considerable amount of time
    getting familiar with the PDF file format to understand how color works in
    the PDF context. Reader the PDF spec, while paying special attention to the
    section about color. You will find out that if you want to convert the
    color space of a "PDF file", you actually need to convert the color space
    associated with every single object in your PDF file. That is fairly simple
    for vector graphic and text, but when it comes to images, you may have to
    convert the image data. Once you have a good understanding of what it is
    you need to do within the PDF file, then you can start looking for tools
    that allow you to do that. Again, Acrobat and therefore the Acrobat SDK is
    not suitable for this task. If you want to stay with Adobe products take a
    serious look at the PDF Library, which his licensed through Datalogics (
    http://www.datalogics.com/products/pdf/pdflibrary/). As you've mentioned,
    there are other, non-Adobe PDF libraries that you can also use, but this is
    the Acrobat SDK forum, so I won't discuss any of those 3rd party solutions.
    You are wasting your time while looking for a simple solution that does not
    exist.

  • Faulting module acrobat.dll

    Lame day!
    I haven't posted here in over a year. I guess that's good. Today we converted my machine here at work from our old NT 4 domain to the new Active Directory server. Then I spent my afternoon repairing all the stuff related to CS3 that were somehow bombed in the switch -- stuff like a blank XML configuration file or a palette in Photoshop. I got everything except one problem: Acrobat just won't start. I get a classic Windows "program encountered error" message immediately and that's all. When I take a look at the error log, I see:
    Faulting application acrobat.exe, version 8.1.0.137, faulting module acrobat.dll, version 8.1.0.137, fault address 0x00117e1c.
    I've tried repairing and reinstalling, but the problem persists. I tried to install Reader and had the same results (with a slightly modified error log).
    Distiller still works. I can make PDFs using the Office plug-in. I just can't look at them after that. Also, sometimes I need to do more than just turn a Word document into a PDF.
    So, if anyone can provide me with a clue, I'd love it. Here are all the relevant details of my machine:
    - Windows XP Pro
    - CS3 Web Premium
    - 1GB RAM
    - Intel Core 2 Duo at 2.13 GHz
    Thanks, folks!

    Maybe the .dll itself has been corrupted. When I try to reinstall from the DVD, I can't select Acrobat. It says it's already installed. Is there a way just to get the .dll? I haven't been able to look at a PDF on my machine since this started. I can make them, but then I have to use my development machine in another room to see them. Remote Desktop is nice, but it gets lame quickly.
    Jeremy

  • Access InterOp.Acrobat.dll

    Hi,
    How to Enable commenting in PDF using VB.net through InterOp.Acrobat.dll? Is it possible?
    Kindly give me the solution with example.  otherwise is there any other way to enable commenting for PDF(Reader Enabled PDF)?
    Please advice me.
    Regards
    Kumar

    otherwise is there any other way to enable commenting for PDF(Reader Enabled PDF)?
    It is possible with the Adobe LiveCycle Reader Extensions ES software:
    http://www.adobe.com/products/livecycle/readerextensions/

  • Using Acrobat.dll

    HI,
    I am trying to direct print a pdf using visual c# and acrobat.dll without installing acrobat 11 pro. the dll is registered. however I am still getting the class not registered error. Any suggestion ?

    You can't use parts of Adobe Acrobat.

  • Working with acrobat.dll

    Hello all,
    I am completely new to this forum, and I hope it's a right place to ask what I am going to ask. I am trying to develop application, that could take some pdf document, and to add field on certain page at certain coordinates. There will be a further use of this field, but it is not of inetrest so far. To achieve this, I am using Adobe Acrobat 7.0.5 SDK installed on my machine. I created a .Net project and added Acrobat.dll as a project reference. To be able to get to document object, I instantiate object of class AcroAVDocClass, and here the problem starts. Application fails to run, with such an error:
    Retrieving the COM class factory for component with CLSID {72498821-3203-101B-B02E-04021C009402} failed due to the following error: 80040154.
    After googling a lot, I know that it is a problem related to registering the component. Indeed, I cannot find this dll in the list of registered COM components in "Add reference" window of my MS Visual Studio 2003, and it is not on the list of .NET components as well. I tried to register the dll by means of regsvr32 - it failed as well, saying:
    C:\Program Files\Adobe\Adobe Acrobat 7.0.5 SDK\InterAppCommunicationSupport\PIAs\Acrobat.dll was loaded, but the DllRegisterServer entry point was not found. The file cannot be registered.
    Does anyone have any idea what I supposed to do? I'll very appreciate any hint.
    Thanks in advance!

    Thank you a lot, indeed, instalation of Acrobat solved the problem of registering dll. Now I want to go further and to add field to the pdf document. We have here some javascript code, that deals with this, and it works fine.
    for (var p =0;p <this.numPages;p++)
    var aRect = this.getPageBox({nPage:p});
    aRect[0] =582.711;
    aRect[1] =353.114;
    aRect[2] =594.439;
    aRect[3] =202.498;
    var f =this.addField("CaseIDBarcode","text",p,aRect );
    f.delay =true;
    f.textSize =26;
    f.delay =false;
    f.fontSubset = subset.Roman;
    f.MEOptions = 32768;
    f.textFont = "B3of9Barcode";
    f.rotation = 90;
    Now we want the .Net application to do the same thing. I know that it is possible by means of JSObject (to run javascript commands from outer .net application). Is it possible at all? Where can I find samples of code that can do it (prefferably, in C#)
    Thanks again!

  • AMT Subsystem Failure with Acrobat Reader 10.1.3

    I'm getting AMT Subsystem Failure when trying to open .jpg files in Acrobat Reader. Message says Error: 1. Never had this problem before today (16/4/12). Can't find a solution anywhere. My OS is Windows 7 64.Can anyone help?

    My mistake. It was PSE 8 that was causing the problem. Can view .jpg's in other viewers (PSE 8 had been default viewer). Have now installed a trial version of PSE 10 and everything fine.

  • Samsung SCX-4521F scanner failure into Acrobat 9.1.3

    I have the above mentioned all-in-one, latest scan drivers loaded from Samsung.  Windows XP SP3 fully up to date.  Acrobat recognizes the WIA driver (must invoke Custom Scan since does not allow presets), allows option changes, but when Scan button is pushed it fails with msg "Error while interacting with the scanner: the selected scanner was not found".  The msg doesn't make much sense, since Acrobat has already interacted with the scanner, but there it is.
    I'm an experienced pc IT type, have gone thru the usual reload drivers, etc., with no luck.  All other applications can scan directly from the WIA Twain32 driver, including Adobe Photoshop CS4, but not Acrobat.  I have searched knowledge base, Googled, etc., no info.
    Richard Southworth

    Bill, I believe you need to read my other posts, Adobe Acrobat from the built-in administrator account is the only app that won't scan successfully.  And in XP there are now two ways to scan, Twain and WIA (Windows Imaging Acquisition), both fail.
    So here's the final workaround, in case anybody else has this issue and needs a "fix".  I have two accounts on my Windows XP SP3 system, the built-in Administrator account (my normal working logon) and a second user account, call it X, that also has administrative privileges (belongs to the administrators group).  I have a shortcut on my desktop in the Administrator account for Acrobat - I right click on it and choose Run as from the pop-up menu.  I then select the X account and enter its password, and Acrobat appears.  Scan to pdf now works properly for both of my scanners; when finished I have to be careful where I save the pdf, since the Desktop and My Documents are for the X user and don't show up automatically since I'm logged into the system as Administrator.  Not a big deal, easy enough to put the final pdf somewhere convenient to locate.
    So there you have it, Adobe for some obscure reason has inhibited scan to pdf while in the built-in Administrator account, at least in my system and for two different scanner brands (Epson and Samsung).  I don't believe it is a permissions issue; I have examined all involved files and registry entries for such and have found no obvious problems.  I have uninstalled and installed both Acrobat and the scanner driver for all combinations of the two users, again with always the same result.
    Richard Southworth

  • I get an installation failure installing acrobat XI pro from DVD

    I recently purchased education edition of Adobe Acrobat XI Pro. When I install the software it gets all the way to the end of the installation process and then I get the message: Installation failed.The installer encountered an error that caused the installation to fail. Contact software manufacturer for assistance

    Nobody can know anything without proper system info and other technical details.
    Mylenium

  • Install failure for Acrobat X Pro

    Hi, I have just down loaded Acrobat X Pro from the adobe website. When trying to install I get an error telling me that "The application cannot be installed on this operating system". I am running xp proffesional sp2 and have included a screen shot of my system below
    Please help and many thanks
    http://content.screencast.com/users/g1nge/folders/Default/media/218e505d-e02b-445c-9c65-4a 93f8821ae7/System.JPG

    Good day,
    Michael is correct, you must have Service Pack 3 for Windows XP installed before you may install the trial of Acrobat X.
    Please see: http://www.adobe.com/products/acrobatpro/tech-specs.html for a complete listing of the system requirements.
    Regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • Uninstall/reinstall failure of Acrobat 9

    After encountering problems with Acrobat 9 -- after installing MS Office Professional Plus 2010 -- I attempted to uninstall & then reinstall Acrobat 9 -- thinking that would resolve the problems -- but that uninstall/reinstall was unsuccessful.  Now my disc drive does not recognize the Acrobat 9 disc. Acrobat 9 will not open.  Is it possible to do a download to reinstall or repair the Acrobat 9 from adobe.com?
    Help -- dh

    Acrobat Cleaner Tool
    Direct Download Links for Adobe Software
    Mylenium

  • Installer failure with Acrobat Reader Xl on Macbook Pro with OS 10.8.

    Installer quits with Installation error
    Here is the error message I receive. I am clueless what this means and why I am having trouble
    "dyld:DYLD_environment variables being ignored becuase main executable (/System/Library/PrivareFrameworks/Iinstall.framework/Resoures/runner) is setuid or setgid installer;Package name is Adobe Reader X1(11.0.01. Installer: Installing at base path /Installer: the install  failed (the installer encountered an error that casued hte installation to fail. Contact the softwware manufacturer for assistance)"
    I know this is free software but , really,there should be assistance understanding this type of message and help with a solution.NEVER had trouble with reader in all the years i have happily used it

    i would like to thank adobe for ignoring this question for almost 5 solid months.  Way to go adobe.
    Please insert annoying diatribe for adobe not signing their freaking adobe certificate package for 10.8.3   REALLY?
    Steps I followed
    Uninstalled all my CSS applications
    Ran the pretty much useless CS Cleaner
    Tried to delete anything and everything that said adobe in all the cache directories. (someone had a nice post on problems with cs3 that i tried to emulate)
    Lost count of the number of reboots and attempted reinstalls
    completely disabled apple security for applications
    Enabled Root user
    Opened terminal root
    ih8adobe4beingMS:/ root# installer -pkg "Adobe Reader XI Installer.pkg" -target /
    installer: Package name is  Adobe Reader XI (11.0.02)
    installer: Certificate used to sign package is not trusted. Use -allowUntrusted to override.
              8.  Qbert diatribe for probably 15 mintues
       Steps to resolve
    downloaded full version, with already downloaded stuff.  http://www.adobe.com/support/downloads/detail.jsp?ftpID=5561  (google: Adobe Reader 11.0.02 full installer - English)
    copied installer to / (root directory)
    ran
    ih8adobe4beingMS:/ root# installer -pkg "Adobe Reader XI Installer.pkg" -target / -allowUntrusted
    output:
    installer: Package name is  Adobe Reader XI (11.0.02)
    installer: Installing at base path /
    installer: The install was successful.
    used spotlight and opened adobe, accepted license agreement.
    dear adobe:  please feel free to send me a free upgrade on my CSSX to the latest version.
    [update: i corrected a typo in the word license]

Maybe you are looking for

  • Autorizacao de Entrada de Nota Fiscal

    Bom dia Companheiros    Estou tentando fazer uma autorização para que a QUANTIDADE dos itens da nota de entrada não possa ser diferente do pedido de compra conforme a consulta abaixo mais ta dando erro alguem poderia me ajudar. Select distinct 'TRUE'

  • Calling a function/procedure from a column link in a report

    Here's what I'm trying to do. I have a hidden page item variable that stores my security settings as a string like so: SETTING_1:SETTING_2:SETTING_3:SETTING_4I have a report that prints out security settings for our site. What I want to do is make th

  • Drag and Drop isn't Working

    For some reason drag and drop in the Finder isn't working.  If I click on a file or folder it highlights, but when I hold the click and attempt to move it, it stays put.  The cursor moves but it doesn't take the file or folder with it.  So I can't re

  • 7.3 iTunes :service 'iPod service' (iPod service) failed to start."

    Please help me i'm desperate. Ok so, i go to update and charge my ipod and when i plug in my ipod and open ituens it says that i need to download 7.3 for some reason i didnt think much of it. basically i tried downloading it, and when it go to the ve

  • Help on fcpx use for beginners

    I'm searching someone who live in italy near vercelli who can help me start use fcpx. if someone want to help me contact please. even if anyone knew of the existence of tutorial courses near my city. I hope in your help.