Adobe PDF iFilter 9 for 64-bit platforms not working!

I am using window 7 and adobe reader 9. I cant search using keywords that can be found in pdf content. I've indexed those files but the same thing still happen! After a series of installation of ifilter > rebuild index >restart > unistall > restart > reinstall >rebuild>restart.........
somehow two or three files can be search by typing keywords in their content but still not all! Can someone help?!

hi  Phillip
i am not sure what you mean
I downloaded the ifilter and installed it
then configured everything as shown in the pdf file
I tried indexing from scratch exactly as i did successfully in the other computer
and got some errors in the log file
i checked the sql server log and the event viewer logs and got :
Error '0x80004005' occurred during full-text index population for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'), full-text key value 0x0000027A. Attempt will be made to reindex it.    
The component 'PDFFilter.dll' reported error while indexing. Component path 'C:\Program Files\Adobe\Adobe PDF iFilter 9 for 64-bit platforms\bin\PDFFilter.dll'.   
Informational: Full-text retry pass of Full population completed for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'). Number of retry documents processed: 1. Number of documents failed: 1.
Changing the status to MERGE for full-text catalog "Pirsumim_ext_catalog_ck" (5) in database "Pirsumim_ext_ck" (14). This is an informational message only. No user action is required.
Informational: Full-text Auto population initialized for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'). Population sub-tasks: 1
the same dll worked fine in another computer...
how can i see more details what is wrong with this dll  ?
meidad

Similar Messages

  • Adobe PDF IFilter for document searches does not work

    I am new to full text indexing of documents but I know enough to get the files into the database and apply indexing and searches because I got it to work for Word (.doc) files.  
    I'm trying to get Adobe's Ifilter version 11 to work in Windows 7 x64.  I'm using Sql Server 2012 Express with Advanced Services sp1. I have included the full path to the /bin folder for the PDF dll in my PATH environment variable per the instructions.
    Register ifilters (after install)
    EXEC sys.sp_fulltext_service 'load_os_resources', 1;
    Verify that the .pdf filter is installed:
    EXEC sys.sp_help_fulltext_system_components 'filter';
    This is the row I get for PDF which I delimited with ';'. The underline portion is what I have in PATH env variable.
    filter; .pdf; E8978DA6-047F-4E3D-9C78-CDBE46041603; C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\PDFFilter.dll; 11.0.1.36;  Adobe Systems, Inc.
    The file content column is
    content VARBINARY(MAX) NOT NULL
    I insert the file with
    INSERT INTO dbo.Documents (filename, doctype, content)
    SELECT
     N'MyFile',
     N'pdf',
     bulkcolumn
    FROM OPENROWSET(BULK 'C:\MyFile.pdf', SINGLE_BLOB) AS doc;
    I reboot the machine and rebuild the Full Text Catalog after installing the PDF iFilter.
    Then I search with one of these.  There are Word and PDF files that contain 'apple'.
     SELECT id, filename, doctype FROM dbo.Documents WHERE FREETEXT(content, N'apple');
     SELECT id, filename, doctype FROM dbo.Documents WHERE CONTAINS(content, N'apple');
    Now this all works well for .doc files but .PDF files never show up in searches.  I have tried both version 9 and version 11 to no avail.
        

    Hello,
    We believe we have figured this out.  It looks like it has to do with the length of the default folder location for the Adobe iFilter.
    I was able to reproduce the issue and the following resolved it for me.  See if this resolves it for you all as well.
    Here is how to get Adobe Version 11 PDF filter to work.
     1 . If you haven’t already, run the following in SQL Server:
    Sp_fulltext_service ‘Load_os_resources’, 1
    Go
    --you might also need to run: 
    sp_fulltext_service ‘Verify_signature’,0  --This is used to validate trusted iFilters. 0 disables it. So use with caution.
    --go
    2. Stop SQL Server.  (Make sure FDHost.exe stops)
    3.  
    Uninstall the Adobe ifilter (because it defaulted to having spaces or the folder name is too long).
    4.  
    Reinstall the Adobe iFilter and when it prompts for where to install it, change it to: C:\Program Files\Adobe\PDFiFilter
    5.  Once the installation finishes, go the computer’s Environment variables. Add the following to the PATH.
    C:\Program Files\Adobe\PDFiFilter\BIN
    NOTE: it must include the BIN folder
    NOTE: If you had the OLD location that included spaces, remove it from the path environment variable.
    6. Start SQL Server
    7.  IF you had an existing Full-text index on PDFs, drop the full-text index and recreate it.
    8. You should now get results when you run sys.dm_fts_index_keywords('db','tblname')  --Note: Change db to be the actual database name and tblname to be the actual table name.
     Give this a try and see if this fixes yours. 
    Sincerely,
    Rob Beene, MSFT

  • Memory Problems with Adobe PDF iFilter for 64-bit

    In preparation to rebuild my Windows Search Index, I installed the Adobe PDF iFilter for 64-bit on my system (Vista Business 64).  When I finally rebuilt the index, I wasn't too surprised by what I saw happen, namely, the SearchFilter.exe process would kick in whenever I wasn't using the system and just eat RAM.  One time I turned it on and it had allocated over 4,000 MB (and my system only has 4,030 MB available) so of course it was forcing all the other processes to hard fault (ie. everything was moving like molasses--for example, it took 20 minutes to put the thing to sleep).  But I just let it do it's work, figuring that perhaps this was to be expected relative to the small library of PDF's that I've accumulated on my computer, ranging from LaTeX generated text files, to containers for hi-res scans.  So, after a day and a half of basically not using my laptop, everything finally calmed down and I enjoyed the benefits of searching the content of my library from the Windows Start menu--for a short while.
    However, to my dismay I've encountered the problem that this freezing of my computer would now occur after everytime I download a new PDF (in this particular case they were Google Books scans) and then left the computer to idle.  Again, the SearchFilter.exe would allocate all of my RAM for itself and just push everything else onto the Virtual RAM, which means the SLOWEST possibly fetching you can get.  I had to uninstall as this was making my computer unusable for 15-30 minutes after each idle. Everything is back in working order without the iFilter, but I would like to know if anyone has reported such problems on x64 systems.  Obviously, I will also report the problem to Microsoft, since the search engine should certainly have the precaution to handle such memory problems.   However, it is a problem that is created by the Adobe PDF iFilter interacting with the Windows Search engine.

    Hello,
    We believe we have figured this out.  It looks like it has to do with the length of the default folder location for the Adobe iFilter.
    I was able to reproduce the issue and the following resolved it for me.  See if this resolves it for you all as well.
    Here is how to get Adobe Version 11 PDF filter to work.
     1 . If you haven’t already, run the following in SQL Server:
    Sp_fulltext_service ‘Load_os_resources’, 1
    Go
    --you might also need to run: 
    sp_fulltext_service ‘Verify_signature’,0  --This is used to validate trusted iFilters. 0 disables it. So use with caution.
    --go
    2. Stop SQL Server.  (Make sure FDHost.exe stops)
    3.  
    Uninstall the Adobe ifilter (because it defaulted to having spaces or the folder name is too long).
    4.  
    Reinstall the Adobe iFilter and when it prompts for where to install it, change it to: C:\Program Files\Adobe\PDFiFilter
    5.  Once the installation finishes, go the computer’s Environment variables. Add the following to the PATH.
    C:\Program Files\Adobe\PDFiFilter\BIN
    NOTE: it must include the BIN folder
    NOTE: If you had the OLD location that included spaces, remove it from the path environment variable.
    6. Start SQL Server
    7.  IF you had an existing Full-text index on PDFs, drop the full-text index and recreate it.
    8. You should now get results when you run sys.dm_fts_index_keywords('db','tblname')  --Note: Change db to be the actual database name and tblname to be the actual table name.
     Give this a try and see if this fixes yours. 
    Sincerely,
    Rob Beene, MSFT

  • Signed up twice for adobe pdf export to word and still not working - anyone else have this problem?

    signed up twice for adobe pdf export to word and still not working - anyone else have this problem?

    In XI.
    I can’t just export to word as I have done in the past in one simple click.  
    Convert to button is greyed out.
    Now I have to save the pdf file on c drive when I am in outlook…then goto export pdf file…then find file then export to word.
    I bought new computer with windows 8 (which is awful) and then bought pdf export again…
    Any thoughts on how I can get back to one simple click again when I open a pdf file from an email in outlook?
    Thank you,
    Mike

  • I have just purchased Adobe PDF Now and concerned it will not work on my Mac

    Does ADOBE PDF Now work on a Mac

    Check out this thread: Downloaded Lightroom CC but only get a quick flash of the startup screen then nothing, Lightroom 5 still working.

  • Vista PDF Preview handler installed on Win 7 32 bit does not work.

    There is no discoverable information regarding failure to preview Adobe PDF files on Win 7 32 bit. The advice for 64 bit does not work. Adobe continues to install the Vista preview handler on my Windows 7 computer, which I suspect is the issue. Is there any way to find and install the Windows 7 32 bit handler or is there a registry hack that permits 11 to access the vista version or what? This is a repeat post, as I cannot locate the first and assume that there have been no responses, as I  have received no alerts.
    If you have an answer I will name my first born for you. He is 41 and object loudly, but no price to great.....

    I have fifteen minutes to mark this as a question, despite the fact that no question link or icon exists. Adobe?

  • Adobe PDF iFilter 9 for 64-bit platforms does not index my PDF files with Digital Sign

    Adobe PDF iFilter 9 for 64-bit platforms does not index my PDF files with Digital Sign, why?

    hi  Phillip
    i am not sure what you mean
    I downloaded the ifilter and installed it
    then configured everything as shown in the pdf file
    I tried indexing from scratch exactly as i did successfully in the other computer
    and got some errors in the log file
    i checked the sql server log and the event viewer logs and got :
    Error '0x80004005' occurred during full-text index population for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'), full-text key value 0x0000027A. Attempt will be made to reindex it.    
    The component 'PDFFilter.dll' reported error while indexing. Component path 'C:\Program Files\Adobe\Adobe PDF iFilter 9 for 64-bit platforms\bin\PDFFilter.dll'.   
    Informational: Full-text retry pass of Full population completed for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'). Number of retry documents processed: 1. Number of documents failed: 1.
    Changing the status to MERGE for full-text catalog "Pirsumim_ext_catalog_ck" (5) in database "Pirsumim_ext_ck" (14). This is an informational message only. No user action is required.
    Informational: Full-text Auto population initialized for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'). Population sub-tasks: 1
    the same dll worked fine in another computer...
    how can i see more details what is wrong with this dll  ?
    meidad

  • Adobe PDF iFilter 9 for 64-bit platforms + temp folders in the root

    Adobe PDF iFilter 9 for 64-bit platforms creates temp folders for some pdfs with attachments in the root of Windows Server 2008 R2 x64 bit machine. Do you know how to solve it?

    After having tried all the different suggestions out there I "stumbled" on the REAL solution to this problem (for me at least).
    Ensure that the "Windows Search" service has "Allow service to interact with desktop" enabled:
    After enabling this you need to restart the service.
    Please note that this fix alone (not doing anything else) solves the problem :-)
    /Tom

  • Adobe PDF iFilter SQL Server 2008 R2 Full Text not working

    Unable to get the SQL Server 2008 R2 to index PDF files for full-text searching.
    Environment: Windows 7 SP1 Enterprise 64-bit, SQL Server 2008 R2 Express SP3 64-bit, Adobe Reader 11.x
    Installed PDF iFilter 64 (11.0.01) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    Added its folder (C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\;) to the PC system Path variable. Rebooted PC.
    Confirmed SQL Server sees the Adobe PDF iFilter ..... SELECT * from sys.fulltext_document_types where document_type = '.pdf' 
    Inserted PDF files to my table (see below for CREATE statement).
    The SQLFT log says  ... Warning: No appropriate filter was found during full-text index population for table or indexed view '[TestDB].[dbo].[pdfifiltertable]' (table or indexed view ID '2105058535', database ID '7'), full-text key value '1'.
    Some columns of the row were not indexed.
    Installed other filters for Office. Added files of type DOC, XPS. Confirmed the search query works for those file types. So as such SQL Full-Text is enabled and working.
    Below my T-SQL commands:
    Exec sp_fulltext_service 'load_os_resources', 1
    Exec sp_fulltext_service 'verify_signature', 0
    Exec sp_fulltext_database 'enable'
    CREATE TABLE pdfifiltertable(
    PdfID INT IDENTITY NOT NULL,
    PdfFileName VARCHAR(MAX),
    Ext VARCHAR(10) ,
    PdfText VARBINARY(MAX),
    CONSTRAINT PK_PdfID PRIMARY KEY (PdfID)
    GO
    CREATE FULLTEXT CATALOG pdfCatalog AS DEFAULT
    GO
    CREATE FULLTEXT INDEX ON pdfifiltertable([PdfText] Type column [Ext]
    ) KEY INDEX PK_PdfID with change_tracking auto
    GO
    SELECT pdfFileName FROM pdfifiltertable WHERE CONTAINS(pdftext, 'payment')

    What edition are you using? Like is it SQL-Express or SQL-Standard etc.
    Adding files using C# desktop application.
    Tested in another PC SQL-Server Express 2008 with Windows 7 64-bit. Same issue.
    C# source code ... add a button called uploadPDF and a datagridview called datagridview to the form.
    using System;
    using System.IO;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    namespace UploadPDF
    public partial class Form1 : Form
    #region Properties
    protected static string ConnectionString {
    get {return "Integrated Security=SSPI;database=Testdb;Data Source=localhost\\SQLEXPRESS;Workstation ID=localhost;";}
    protected static SqlConnection Connection {
    get {return new SqlConnection(ConnectionString);}
    protected DataTable pdfDataTable;
    #endregion
    public Form1()
    InitializeComponent();
    populateDataGrid();
    protected void populateDataGrid()
    SqlConnection con = Connection;
    con.Open();
    try
    pdfDataTable = new DataTable();
    SqlCommand cmd = new SqlCommand( "select * from pdfifiltertable", con);
    SqlDataAdapter adapter = new SqlDataAdapter(cmd);
    adapter.Fill(pdfDataTable);
    dataGridView.DataSource = pdfDataTable;
    dataGridView.Columns[3].Visible = false;
    finally {
    con.Close();
    private void uploadPDF_Click(object sender, EventArgs e) {
    if (DialogResult.Cancel == fileOpenDialog.ShowDialog()) return;
    try {
    byte[] content = FileToByteArray(fileOpenDialog.FileName);
    uploadPDFBlob2DataBase(fileOpenDialog.FileName,content);
    populateDataGrid();
    } catch (Exception ex) {
    MessageBox.Show(ex.Message, "PDFiFilter11", MessageBoxButtons.OK, MessageBoxIcon.Error);
    public byte[] FileToByteArray(string _FileName) {
    byte[] pdfBuffer = null;
    try {
    System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
    System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);
    long TotalNumberOfBytes = new System.IO.FileInfo(_FileName).Length;
    pdfBuffer = _BinaryReader.ReadBytes((Int32)TotalNumberOfBytes);
    _FileStream.Close();
    _FileStream.Dispose();
    _BinaryReader.Close();
    } catch (Exception _Exception) {
    Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
    return pdfBuffer;
    public void uploadPDFBlob2DataBase(String fName, byte[] content) {
    SqlConnection con = Connection;
    con.Open();
    String ext,filename;
    ext = Path.GetExtension(fName);
    filename = Path.GetFileName(fName);
    try {
    SqlCommand insert = new SqlCommand( "insert into pdfifiltertable ([PdfFileName],[Ext],[PdfText]) values ((@pdfFileName),(@extension),(@pdfcontent))", con);
    SqlParameter pdffilenameParameter = insert.Parameters.Add("@pdfFileName", SqlDbType.NText);
    pdffilenameParameter.Value = filename;
    pdffilenameParameter.Size = filename.Length;
    SqlParameter extParam = insert.Parameters.Add("@extension", SqlDbType.NVarChar);
    extParam.Value = ext;
    extParam.Size = ext.Length;
    SqlParameter pdfcontentParameter = insert.Parameters.Add("@pdfcontent", SqlDbType.Binary);
    pdfcontentParameter.Value = content;
    pdfcontentParameter.Size = content.Length;
    insert.ExecuteNonQuery();
    } finally {
    con.Close();
    } //class
    } //namespace

  • Issue with Adobe PDF IFilter 64 bit

    Hi All,
    I am facing issue while using Adobe IFilter for 64 bit, the section of code mentioned below is used to load IFilter for PDF IFilter 64 bit using IPersist interface.
    LibHndl = LoadLibrary(strDLLName.c_str());
    if(LibHndl)
                     FnPtr_DllGetClassObject fnDLCO = NULL;
                     // Add to the load list.
                     fnDLCO = (FnPtr_DllGetClassObject)GetProcAddress(LibHndl, "DllGetClassObject");
                     if(NULL != fnDLCO)
                         IClassFactory* pICF = NULL;
                         hrslt = fnDLCO(objChachedIFilterNode.m_iidFilterPersistance, IID_IClassFactory, (LPVOID *)&pICF);
                         if( ( S_OK == hrslt ) && (NULL != pICF) )
                             IFilter *pobjIfilter = NULL;
                              hrslt = pICF->CreateInstance(pUnkOuter, IID_IFilter, (void**)&(pObjIfiter));
                             if( ( S_OK == hrslt ) && (NULL != pObjIfiter) )
                                 IPersistStream* persistStream = NULL;
                                 hrslt = pObjIfiter->QueryInterface(IID_IPersistStream, (void**)&persistStream);
    with this pointers to IFilter and IPersistStream for Adobe PDF filter 64 bit have been obtained then the code section below is used to load the IFilter
            size_t dwReadSize = 0;
             pFile = fopen(pszFileName, "rb"); //pszFileName: complete path of pdf file
             if(NULL != pFile)
                 if(0 == fseek(pFile, 0L, SEEK_END))
                     dwSize = ftell(pFile);
                     dwFileSize = dwSize;
                     fseek(pFile, 0L, SEEK_SET);
                       m_pbyDataBuffer  = (unsigned char  *)GlobalAlloc(GPTR, dwSize);
                        bool bolReadFile = false;
                 if(NULL != m_pbyDataBuffer)
                     dwReadSize = fread(m_pbyDataBuffer, 1, dwSize, pFile);
                 hStreamResult = CreateStreamOnHGlobal(NULL, TRUE, &m_pIStreamBuffer);                   //m_pIStreamBuffer: is pointer to IStream
                 if(NULL != m_pIStreamBuffer)
                     LARGE_INTEGER iLarge = {0};
                     m_pIStreamBuffer->Seek(iLarge, STREAM_SEEK_SET, NULL);
                     ULARGE_INTEGER uInt = {0};
                     ULONG dwBytesWritten = 0;
                     m_pIStreamBuffer->SetSize(uInt);
                     if(NULL != m_pbySecDataBuffer)
                         hStreamResult = m_pIStreamBuffer->Write((void const*)m_pbySecDataBuffer, (ULONG)dwSize, &dwBytesWritten);
                     else
                         hStreamResult = m_pIStreamBuffer->Write((void const*)m_pbyDataBuffer, (ULONG)dwSize, &dwBytesWritten);
                 fclose(pFile);
                 pFile = NULL;
             if(S_OK == hStreamResult)
                 if((NULL != objCIFilterExNode.m_pObjIfiter) &&\
                     (NULL != objCIFilterExNode.m_pObjIPersistStream))
                     m_pGenericFilter = objCIFilterExNode.m_pObjIfiter;
                     m_pPersistStream = objCIFilterExNode.m_pObjIPersistStream;
                     if(NULL != m_pIStreamBuffer)
                         hReturnValue = m_pPersistStream->Load(m_pIStreamBuffer);
    this entire piece of code is working completely fine in debug mode where as in release mode the same thing is causing hang once the control reaches to hReturnValue = m_pPersistStream->Load(m_pIStreamBuffer); statement i.e. execution of this statement is causing the hang in application in release mode and this is happening only in case of pdf files while for all the other extensions files everything is working fine in both debug as well as release mode i.e. loading of all other IFilters is working fine.
    kindly help to resolve this problem for pdf files.
    Thanks
    Sheela Gusain

    Hi Bibhas,
    Please configure iFilter as mentioned in the doc: http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/Acrobat_Reader_IFilter_config uration.pdf
    Regards,
    Rave

  • Trying to install Acrobate 8 Standard on PC with Windows 7, 64 bit. During the installation I was asked to provide "File Adobe PDF.dll for Windows Vista. How can I obtain the required file?

    Trying to install Acrobate 8 Standard on PC with Windows 7, 64 bit. During the installation I was asked to provide "File Adobe PDF.dll for Windows Vista. How can I obtain the required file?

    Nothing in the Acrobat 8.x product family is compatible with Windows 7 (or any contemporary OS).
    The Acrobat 8.x product family passed into End of Support way back -- (November 2011).
    The current release of Acrobat (XI) is compatible in Windows 7.
    Be well...

  • Adobe PDF iFilter 11 creating folders in C:

    Adobe PDF iFilter 11 is creating a bunch of folders in the root of my Windows Server 2008 R2 x64 bit machine.  It's creating folders as A9R****-*******  What can I do to fix this?  Thanks!

    So far it's been working.  I think I just never added the \ at the end of the path!
    I did:
    Program Files\Adobe\Adobe PDF iFilter 9 for 64-bit platforms\bin
    instead of:
    Program Files\Adobe\Adobe PDF iFilter 9 for 64-bit platforms\bin\

  • Issue with Adobe PDF Ifilter Extension version 11

    Dear Friends
    Come across few issues while determining correct version of Adobe PDF Ifilter Extension
    In my local laptop I installed Ifilter extension 9.0 but unfortunately this version is no longer available for further download.
    Latest version is 11.0 and I downloaded from below link.
    http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
    Just for verification, I uninstalled old version(9.0) and installed the above version(11.0) but going forth PDF indexing stopped working.
    I have a requirement of PDF file content search and using Lucene.Net for this purpose. Lucene indexer that I have written is reading PDF content using PDF filter extension.
    I noticed above code stopped working for any site hosted on IIS. However console,desktop and IIS express applications are working fine.
    For further verification, I installed the same component in another laptop also but ended with same experience.
    Please provide some input.
    Regards Paul

    Hi Bibhas,
    Please configure iFilter as mentioned in the doc: http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/Acrobat_Reader_IFilter_config uration.pdf
    Regards,
    Rave

  • How to set up PDF IFilter for SharePoint 2013?

    I want to set up PDF IFilter for SharePoint 2013. I know that this is possible for SharePoint 2010.
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5542&fileID=5550
    http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/Acrobat_Reader_IFilter_config uration.pdf

    Just wondering.. if you ever got this figured out? If not.. I can assist

  • Adobe PDF creation cannot continue because Acrobat not activated

    Adobe CS3, Acrobat Professional 8.1.0, Windows XP Pro: CS3 has been working faultlessly for several years. Suddenly, when I try to print using Adobe PDF as printer I get message "Adobe PDF creation cannot continue because Acrobat not activated". To my knowledge all of CS 3 should be activated. InDesign, Photoshop, Bridge, Illustrator, etc work fine. I can even open Acrobat 8 and call up documents but I cannot print to it. When I click on "Activation" in Help menu, both "Activate" and "Deactivate" are grayed out. Any suggestions?

    Perhaps you should use this tool:
    <http://www.adobe.com/support/contact/licensing.html>
    The tool repairs the license but before using this tool, have you tried re-booting the system just in case this is a temporary problem?  Also, it is a good idea to create a temporary profile and try using the PDF printer to see if it is working.
    If it is working in your temporary profile, then this suggests that your preference file might need to be re-created but this is for next time after you have tried using the pdf in your test profile.
    G/L

Maybe you are looking for

  • No suggestion has worked for me to fix iTunes 10.2.1.1 upgrade!

    I upgraded my iTunes when prompted 2 days ago and thought nothing more of it until yesterday when I tried to launch iTunes in order to add more songs. (I am using Windows 7 btw). Whenever I clicked on the icon to open it nothing happened and before a

  • How to you set up a POP email account on iPhone 5S?

    How do you set up a POP emial account on iPhone 5S.  It only gives me an option for IMAP and I need POP THANKS

  • Application crashing regularly

    Hi, Strange issue since months on my MacBookPro. During my Mac utilisation, applications are regularly crashing (one at a time). It happens with Cord, Skype, Safari, Firefox, ITunes, ... Today (I am working from 1 hour) and Safari crashes 4 times alr

  • Exporting for TV from FCP X

    Hey team, I need to complete a job for a SD TV station... They have given me the following specs: 702 x 576 pixels in an aspect ratio of 16:9 FHA (Full Height Anamorphic) 25 frames per second (50 fields) interlaced - now known as 576i/25. colour sub-

  • Don't know how to add a iOS device in find my iPhone(iPad) app.

    When I was using the find my iPhone app on my iPad it only showed my iPad and I wanted to add another device in it but I don't see a edit or a add button. Does anyone know how to?