Password Protect PDF's ??

Hello,
I currently have Adobe Reader XI and was wondering how, or what software is needed to be able to password protect pdf's so that we can securely send our clients information. Thanks!

Sorry. Been out ill for a couple of days.
If you don't care whether your clients mess with the documents, you can always Zip the files first and add password security to the Zip file. But yeah, don't count on the security set by Adobe to keep people out. As mentioned, it's mostly just honored by other Adobe products.

Similar Messages

  • How to read a password protected pdf on a surface pro 2?

    Has anyone been able to successfully open a password protected PDF on a Surface Pro 2?  The Adobe Reader app doesn't work on the surface pro 2 with protected PDFs.

    Use Adobe Reader XI, the regular Adobe Reader for any Windows system.

  • Password Protected PDF Files in Elementary OS

    I have installed Acrobat 9.5.5 on my Elementary OS (Ubuntu base) system but when I try to open a password protected PDF file from my bank Acrobat fails with the error "There was an error opening this document. An updated version of Acrobat is needed in order to open this document.".
    The version that I have installed claims to be 9.5.5 04/26/2013.
    Has anyone got any pointers?
    Thanks

    Well,  first, you probably don't have Acrobat 9.5.5 installed on Ubuntu unless you are running a VM image or using WINE to do so.  You are probably using Adobe Reader 9.x.  If a file was encrypted for Acrobat X and later then you do actually need Adobe Reader version 10.x or later.  Unfortunately there isn't a version 10.x for UNIX/LINUX.  What to do?  Use a VM or WINE and load it up that way.  If you really are running Acrobat 9.5.5 on Ubuntu via a VM image or WINE then you need to load Adobe Reader 10.x or Adobe Reader 11.x.

  • Password protected pdf files in c7

    i am not able to open the password protected pdf files in my c7..it does not even show an option for typing the password..it just show the file is password protected and cannot be opened..i never found such problem in my old n82..why nokia is doing like this in new upgraded phones ...any solutions for this...please...all my mobile bills and credit card bills comes via password protected pdf files...

    Well,  first, you probably don't have Acrobat 9.5.5 installed on Ubuntu unless you are running a VM image or using WINE to do so.  You are probably using Adobe Reader 9.x.  If a file was encrypted for Acrobat X and later then you do actually need Adobe Reader version 10.x or later.  Unfortunately there isn't a version 10.x for UNIX/LINUX.  What to do?  Use a VM or WINE and load it up that way.  If you really are running Acrobat 9.5.5 on Ubuntu via a VM image or WINE then you need to load Adobe Reader 10.x or Adobe Reader 11.x.

  • Password protected PDF in iBooks not displaying

    I loaded a password protected PDF into my iTunes library and then synced it with iPad (4th gen iOS 6.1.3). I see the PDF in iBooks on the iPad and when I click on it, it prompts for the password. I input the password and PDF "opens" but it's just the blank grey screen showing page 1/1 (it's supposed to be a 79 page document). Any ideas? I took the password off the document and loaded that one into iTunes then my iPad and it displays just fine. I did this same sequence with a different document and with the password it didn't display and without the password it did display.
    If there is an issue with iBooks, any way to sideload this into Adobe Reader, or somehow "Open in" Adobe Reader from iBooks?
    Thanks
    Dan

    It looks like this issue may be limited to files that have been set to restrict the user's ability to print or edit the document (even after a password has been entered for viewing).  I found that a password-protected PDF could be viewed in iBooks, but after I added the print restriction, I had the same problem you reported.

  • Password-protected PDF demands password in triplicate

    I'm having problems with a password-protected PDF (created in Acrobat Pro 8 ) which opens fine with a single entry of the password when downloaded but when website visitors try to open the form directly in their browser it keeps asking for the password and will only open on the third password attempt (by when most visitors will have given up on it). Could you please tell me what is causing this phenomenon and whether I can fix it? TIA.
    Simon

    It looks like this issue may be limited to files that have been set to restrict the user's ability to print or edit the document (even after a password has been entered for viewing).  I found that a password-protected PDF could be viewed in iBooks, but after I added the print restriction, I had the same problem you reported.

  • Acrobat 8.1 and C# - How can you detect password protected PDF files?

    I am modifying our existing C# code that opens PDF files.  But when ever we hit a password protected file, we are prompted for a password.  This is an automated process, so if we detect a password protected file, we move the file to a manual processing folder to be processed later.
    We are using Acrobat 8.1 Standard.
    Our code looks like this:
    using 
    System;
    using 
    System.Collections.Generic;
    using 
    System.Linq;
    using 
    System.Text;
    using 
    Acrobat;
    using 
    System.IO;
    using 
    Word = Microsoft.Office.Interop.Word;
    using 
    System.Reflection;
         AcroApp app = new AcroApp();     app.Hide();
         try
              if (app != null)          {
                   app.CloseAllDocs();
                   AcroAVDoc av = new AcroAVDoc(); 
                   if (av.Open(filename, "Test") == true)               {
                        AcroPDDoc doc = new AcroPDDoc();                    doc = (
    AcroPDDoc)av.GetPDDoc(); 
                        doc.Save((
    short)Acrobat.PDSaveFlags.PDSaveFull, 
                        Utilities.GeneratePath(FileVersion.TEMP) + fi.Name.RemoveFileExtension() + ".PDF");                    doc.Close();
         catch (Exception ex)     {
              ErrorLog.LogError(filename.RemoveFileExtension(), ex);     }
         finally
              app.CloseAllDocs();
              app.Exit();
    This works great for non-password protected PDF files, but it prompts for a password if the file is password protected.  I was looking at the FileOpenEX functionality, but I can not find the reference to bring into my C# project.  It looks like it is only for C++, since I could only find C++ examples.
    Any help would be appreciated.
    Thanks,
    Tom

    There are no methods in the Acrobat SDK for C# for what you wish to accomplish.

  • Reader plug-in, save copy of password protected pdf without password

    Hello,
    We currently have an Acrobat Reader plugin (using the 8.1 SDK) and are having trouble with password protected PDFs.
    The sole purpose of our plug-in is to pass a copy of the currently open PDF to a different folder on the user's computer. The problem we are facing is with the password protected PDFs. We would like to pass a copy of the PDF that doesn't have the readonly password protection.
    Scenario:
    1. The user opens a password protected PDF in Adobe Reader.
    2. They are prompted for the password, they enter it and can see the PDF. 3. Now they click our custom button.
    4. Save a copy of the currently open PDF without password protection
    Since we already know they have entered the correct password, in theory we should be able to either save all of the content to a new file, or simply remove the password protection.
    Can anyone point me in the right direction so that I will be able to get a PDF without the password?
    Thanks,
    Ryan

    Hi again,
    I was doing some research in the API reference and examples and I think that for my business problem, it will be sufficient if I can get the read access password. I found that I am able to use the following:
    AVCryptGetPassword(pdDoc, permsWanted, (void **)&password)
    This prompts the user to enter the password and puts the actual password in the &password variable, which will will work for us. Ideally though, I would like to not have to prompt the user again for the password since they already entered when opening the pdf, is it possible to get access to the plain text of the password that they typed when opening the pdf or another way?
    I tried:
    StdSecurityDataRec* secData;
    secData = (StdSecurityDataRec*)PDDocGetNewSecurityData (pdDoc);
    if (secData) {
    if (secData->hasUserPW)
    char* mypw = secData->userPW;
    However, the password is encrypted. Thanks for your help!
    Thanks,
    Ryan

  • How to split a password-protected PDF file?

    There is a tutorial to let you know how to split a password-protected pdf file, check in here:http://www.kvisoft.com/tutorials/split-a-password-protected-PDF-file.html

    Yup. You all are right. I ordered Adobe Acrobat today and the order is still processing. I can get to Adobe Acrobat.com but that too does not work. I guess I will have to wait until my order is processed before I get the keys to the kingdom. Thanks for your help and please forgive my ignorance.Regards,Bob

  • OBIEE 11g having problems with password protected PDF files.

    I have been able to get an analysis in OBIEE 11g to display PDF files.
    However, some of these documents contain sensitive information and must be secured. Since anyone with access to the file name
    could simply type in the proper path in the browser window, this is unacceptable. In order to try and prevent this, I created a pdf file
    that is protected with a password.
    Opening the file by itself, produces the desired results. The password is requested before the file will open.
    When I open the file through my analysis in OBIEE, Adobe reader activates, but the password is not requested and the file does not open.
    It is as if OBIEE is somehow not sensing that Adobee is asking for a password.
    Does anyone have any experience with this?

    FYI, in case anyone is interested, I found out what is going on.
    I created the original password protected PDF using Microsoft Word. I did this because I do not have a full version of Adobe Acrobat that allows me to create files.
    On a hunch, I found someone that has a full version of Acrobat, and had them create a password protected PDF file. This file worked perfectly.
    Apparently, Word is not strictly adhering to PDF guidelines, and OBIEE senses the differences, resulting in the file not opening properly.
    Something to keep in mind for anyone linking to password protected PDF files in OBIEE.

  • Cannot open a password protected PDF file on my ipad

    WHy can't I open a password protected PDF file on my ipad even after I enter my password.

    Someone on another forum said you can with the app Goodreader Lite, but I haven't gotten to try it yet. I will let you know in about 45 minutes.
    P.S: Or this sounds even better - http://discussions.apple.com/thread.jspa?messageID=11780778&#11780778
    Message was edited by: compwiz1202

  • How to display in browser a password protected pdf file I created?

    I created a password protected pdf file.
    I want to display the file in browser so that viewers can only view it online.
    It is better that viewers cannot download it.
    But I donot know how to prevent viewers downloading the file.
    Since the pdf is password protected, viewers don't have the password even they download it.
    But how can I display the password protected pdf file in browser when I know the password?
    Or is there a better to just viewers see the pdf file online and prevent them from downloading and printing it?

    Any file on the web has to be copied to the local machine in order for the file content to be presented to the viewer. That's how the "www" is built.  So, to make use of your web based PDF the file has to be downloaded to the local machine. This might be to the local machine's temporary internet / browser cache or (via a 'save this to my computer') to some other location on the local machine's HDD. Bottom line -- web based files get downloaded this is the case for protected file or a non-protected file.
    Be well...
    Message was edited by: CtDave

  • How to open a password-protected PDF in Safari on iPad(3)?

    I have some password-protected PDFs available on my public-facing website (hosted by MS Office365) that I'm unable to open in Safari on my iPad(3). When attempting to open these files using Safari on my iPad, I receive a grey screen with no presentation of the Adobe Reader "insert password" dialogue box. I do have Adobe Reader installed on my iPad. These PDFs do open on my PC with both IE9 and Safari. I can also open these PDFs on my iPad independent of using Safari. And, I have some non-password-protected PDFs on my website that open using Safari on my iPad. The problem seems to be uniquely associated with the combination of 1) a password-protected PDF, 2) Safari, and 3) the iPad(3). Does anyone have a solution to this particular situation?

    Someone on another forum said you can with the app Goodreader Lite, but I haven't gotten to try it yet. I will let you know in about 45 minutes.
    P.S: Or this sounds even better - http://discussions.apple.com/thread.jspa?messageID=11780778&#11780778
    Message was edited by: compwiz1202

  • I cannot open password protected PDF document with attachments with Adobe Reader on OS X. Crashes.

    I cannot open password protected PDF document having attachments on my OS X (v 10.8.4) with Adobe Reader X nor XI. The reader crashes. The same document using the same password opens fine on the laptop and Windows systems wheni it is fetched from a secure mail server. Why?

    Moved to Adobe Reader

  • Can't open password protected pdf in reader

    Password protected PDF rejects password.
    The password is correct, as this PDF can be opened on other
    PC.
    Ver of adobe reader is 11.0 on windows 7 pro

    Save PDF to desktop and open in adobe reader, also open reader
    first and selected file

  • Unable to open password protected PDF in safari

    Dear all, I'm new in using iPhone safari. I have problem in opening password protected PDF file from safari. Do you have any solution or workaround to resolve this problem
    Regards
    BR

    You can put pretty much any character into the encryption password for a PDF file apart from control codes (carriage returns, backspaces, etc), but whether the vendor's website can is another matter!
    As you seem to have a PDF with a user password that isn't what you expected, there's nothing you can do to remove it other than perhaps trying a version without the quote characters, or with a backslash in front of the quote (it's possible they escaped the string on the login form in preparation for storing it in a database, and forgot to unescape it again).

Maybe you are looking for

  • How do I find out what applications are running in the background

    I have a 2008 iMac with 2GB memory.  How do I find out what programs are running in the background?  I am going to buy a new iMac before the end of the year to replace this one.  When I looked at Activity Monitor it shows 1.8Gb used but doesn't tell

  • Word 2007 Acrobat 9 CRASHES

    Large document in DOCX format, 490 pages, starts to convert, then after three progress bars, Word goes to a solid 50% of CPU and everything stops. I did not pay $300 to have this happen with the first stinking document I am working on. System INFO: A

  • Java.io.NotSerializableException error when starting 8.1 app server

    I am running JES 054Q with uwc deployed on the app server 8.1 (along with am, portal, and da). I am getting a java.io.NotSerializableException for com.sun.uwc.common.util.UWCPreferences when the application server starts. Any access to get attributes

  • Error when i am doing J1IH--

    Hi, When i am doing J1IH - i am getting the below error.can u help me' Error in FI document create Message no. 8I031 Please  help me where the problem is? Thanks KB

  • Where is my network key hidden?

    I have a wireless network setup in my home. The router is a D-Link 802.11g router. I have WPA encryption enabled. The problem is that I have "misplaced" the manual in which I wrote down my network key. I am able to get on the network about 50% of the