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\

Similar Messages

  • 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

  • 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

  • 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

  • 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

  • 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

  • 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 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

  • Where to download Adobe PDF iFilter 9

    Long back I downloaded Adobe PDF iFilter v9 but that download link is no longer available.
    Can any one tell me , where to find Adobe PDF iFilter 9
    I know  latest version is 11 but I want to install v9 only.

    Hi Bibhas,
    You can download pdf iFilter 9 from: ftp://ftp.adobe.com/pub/adobe/acrobat/win/9.x/
    The file name is: PDFiFilter64Installer.zip
    Regards,
    Rave

  • 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

  • Adobe PDF iFilter 9 for 64-bit platforms does not index my PDF files in SQL server database

    hi all
    I need your help
    i have this asp.net site which works with sql server
    it searches a specific word in the database with full text search
    in my database i have a column of type image that holds a PDF file
    i want my SP to search for given word in my file
    so i installed the Adobe Ifilter
    configured it and every thing worked fine
    but after i moved to production Server and installed every thing the same way ...it did not create the index for the pdf files
    i can search for doc and docx and even for xml but not pdf
    i know i installed it correctly since it is working great in the testing environment
    i used this link for the configuration
    http://www.adobe.com/special/acrobat/configuring_pdf_ifilter_for_ms_sql_server_2005.pdf
    the only difference i see between my Testing environment and my Production environment  is that
    my testing has
    windows sever 2003 sp2 with Sql server 2005 64 bit std sp2   -- works fine
    my production  has
    windows sever 2003 R2sp2 with Sql server 2005 64 bit ent sp3  --does not work, does not index my pdf files
    can you tell me if there are problems with some environments ?
    are there any known problems with this Ifilter ?
    what should i do ..

    Thank you
    I opened it in the Acrobat Windows forum
    http://forums.adobe.com/message/2557155#2557155
    meidad Evyoni

  • Adobe PDF IFilter doesn't install with Adobe X (10)

    Am I missing something or Adobe X  Reader doesn't install any pdf filters at all. I searched even with  IFilter Explorer 2.0 and I can't find any in this latest version. Can  someone help me with any information regarding this isue, does Adobe  uses some other system or I just installed it wrong?
    Thank you.

    According to this page, "The iFilter shell extension has a limitation with Microsoft Desktop Search and is not installed with Reader X."  I'm not sure what "has a limitation with" is supposed to mean.
    Adobe has really left us up the creek without a paddle here.  They stopped posting separate IFIlter installers on their download page when they started bundling it in with Reader (except for the 64-bit version of IFilter 9), and the installer for Reader X not only doesn't include the IFilter, but it actually removes whatever IFilter you've got installed.  So, you can't, for example, install Reader 9.4 to get the IFilter from it, and then install Reader X over top of it to have a more modern/secure version of Reader, because your IFilter will disappear.  You are stuck choosing between Reader 9.4 with a somewhat modern IFilter and probably poor security, or Reader X with no IFilter (or the last IFilter to have its own installer, version 6.0, which is 6 years old).
    Dear Adobe, this is a real mess that needs to be fixed.  How many people out there have no idea that their PDF files are no longer searchable because Reader X removed their IFilter?  At least create an installer for IFilter v9.4 so people can use a modern IFilter in combination with Reader X, instead of being forced to use Reader 9.4.  There are a lot of posts in this forum about the missing IFilter, and I don't see a single reply from Adobe.

  • Adobe PDF Converter stops creating PDFs after several successful prints.

    We have an application that create reports that we want to print to PDF and save on our server.  We have been doing this for years.  Have 50 employees doing this.  One computer is having an issue were they will print to the "PDF Printer" and the pdf output file is save to their desktop, but after multiple successful prints, the print will get hung up in the PDF Printer Queue.
    This is on a Win7 Machine, with current windows updates, using Acrobat X Standard version 10.1.10  so I think I am up to date.
    Does anyone have suggestions about what to look at or where the problem may be coming from.
    To fix the problem the user can shut down (restart) the computer and printing to pdf works again.

    I don't get any messages in the queue or any place that I know of.  I looked in the system log and application log for hints and nothing occurs at the time of the error .  Do you have suggestions of where to look for errors that I may have missed?
      The print just stay their.  We usually set the output to also display when completed but Acrobat never displays the report. So somewhere the program hangs or fails.

  • Adobe PDF iFilter 9 for 64-bit platforms

    How do I search for a two word phrase as in 'style analysis'.  The software is finding 'style' and 'analysis' not the phrase

    iFilter doesn't search, it just extracts words for use by a search engine later. How the search works depends on that software.

  • Problem creating PDF file using the Adobe PDF printer

    Apologies if I have hit the wrong forum for this issue.
    I am using Adode Acrbat 9 PRO version 9.4.6 on a Windows 7 SP1 machine.
    I am running an application that presents information on web pages that I need to capture as pdf files. I am using an automation tool so it is limiting my posibilities of accomplishing this task.
    I am attempting to use the Adobe PDF printer as the vehicle to create these PDF files but have encountered the following issues
    The page is truncated on the right hand side
    Only 1 page is created when I was expecting 7
    I have specified a file path for the ADOBE PDF Output Folder      ...  C:\Windows\Temp  and
    checked the box "Add document information" but I am not given the opportuniy to enter a file name. It is using the file name from the URL
    To verify my PDF content I used a different method to create the PDF from the same web page
    Right click within the web page and select Convert to Adobe PDF. The pdf file has the full content with no truncation and is 7 pages in total.
    Unfortunately I am unable to use this method with my automation tool
    Any pointers will be gratefully received

    Some progess
    I changed the page orientation to landscape and that removed the truncation. I am not sure why it is not using the "shrink to fit" but for the purposes of this exercise I can live with this solution.
    If I click Print Preview I can view all pages and then if I select the Print Icon I get a PDF file containing all pages. This is so bizarre.
    So to recap
    File > Print > Adobe PDF Printer only creates 1 page
    File > Print Preview > Print Document (Alt +P) > Print >Adobe PDF Printer creates 7 pages
    I guess this would be a good time to call support to see what they have to say on this topic.

Maybe you are looking for

  • Why my AE, PR, etc are in test mode how can i get it in install mode

    why my AE, PR, etc are in test mode how can i get it in install mode

  • SQL - PL/SQL question for you SQL degenerates.

    I wish to create a view from a tableZ as follows. I have a table with 4 columns. I want to group col1,col2 and col3 based upon the value of col4. The value of col4 is based on a algorithm that needs to search for the lowest number in that particular

  • Can I use my ATT iPhone 4S with a French carrier?

    I am moving to France for a year and would really like to be able to use my iPhone 4S while I am there. Currently, my understanding is that I can simply take my iPhone to Orange when I get to France and have an Orange simcard put in my iPhone and the

  • Movie clips inside an animated movieclip

    Hello- I have been trying to get movieclip buttons inside an action script animated movie clip to work and have no luck doing so. The inside movieclips act as if they dont have over or out states; but when i comment out the animation, they work fine.

  • CSS Failure in cfdocument

    I'm using CF 8.01 with latest hotfixes. Have simple sample below that loops to create two PDF files. In the first one the CSS background-color style works. In the second it does not. Seems like a bug to me. Thoughts? <cfloop index="i" from="1" to="2"