How can save a PDF with password

How can save a PDF with password

Hi MacUser2,

Trial is for 30 days.

Once the trial is over you will be able to open PDF files by using the password that you have installed.

Kind regards
Nicos

Tags: Acrobat

Similar Questions

  • Java Script to save as PDF with password...

    Hi people.  My goal is to have a script to perform the following functions:

    1. Enter the name of the active document

    2 Save as PDF using the active doc name with password lock in the same directory the *.ai file is located

    I started to play with the code, but I don't know what I'm doing... newbie.

    Here's the code that I currently use.

    var curDoc = app.activeDocument;
    var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
    //var destName = "~/Desktop/Testpassword1.pdf";
    var destName = targetFile
    saveFileToPDF(destName);
    //sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator files you want to convert to PDF', '~' );
    //saveFileToPDF(destName);
    //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    if ( sourceFolder != null )
    {
        //files = new Array();
        //fileType = '*.ai';
        //fileType = prompt( 'Select type of Illustrator files to you want to process. Eg: *.ai', ' ' );
        
        // Get all files matching the pattern
        //files = sourceFolder.getFiles( fileType );
        
        if ( files.length > 0 )
        {
            // Get the destination to save the files
            destFolder = Folder.selectDialog( 'Select the folder where you want to save the converted PDF files.', '~' );
            for ( i = 0; i < files.length; i++ )
            {
                sourceDoc = app.open(files[i]); // returns the document object
                                        
                // Call function getNewName to get the name and file to save the pdf
                targetFile = getNewName();
                
                // Call function getPDFOptions get the PDFSaveOptions for the files
                //pdfSaveOpts = getPDFOptions( );
                
                // Save as pdf
                sourceDoc.saveAs( targetFile, pdfSaveOpts );
                
                sourceDoc.close();
            }
            alert( 'Saved' + destFolder );
        }
        else
        {
            alert( 'No matching files found' );
        }
    }
     ///++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     function getNewName()
    {
        var ext, docName, newName, saveInFile, docName;
        docName = sourceDoc.name;
        ext = '.pdf'; // new extension for pdf file
        newName = "";
            
        for ( var i = 0 ; docName[i] != "." ; i++ )
        {
            newName += docName[i];
        }
        newName += ext; // full pdf name of the file
        
        // Create a file object to save the pdf
        saveInFile = new File( destFolder + '/' + newName );
        
    
        return saveInFile;
    }
    ///++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    function saveFileToPDF (dest) {
    
    var doc = app.activeDocument;
    
    if ( app.documents.length > 0 ) {
    
    var saveName = new File ( dest );
    saveOpts = new PDFSaveOptions();
    saveOpts.compatibility = PDFCompatibility.ACROBAT5;
    saveOpts.generateThumbnails = true;
    saveOpts.optimization = true;
    saveOpts.preserveEditability = true;
    saveOpts.bleedOffsetRect = [2,2,2,2];
    saveOpts.trimMarks = true;
    //=======================  COMPRESSION ===========================
    saveOpts.colorCompression = CompressionQuality.JPEGMAXIMUM;
    saveOpts.colorDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.colorDownsampling = 300;
    saveOpts.colorDownsamplingImageThreshold = 450;
    //-----------------------------------------------------------------------------------------------------------
    saveOpts.grayscaleCompression = CompressionQuality.JPEGMAXIMUM;
    saveOpts.grayscaleDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.grayscaleDownsampling = 300;
    saveOpts.grayscaleDownsamplingImageThreshold = 450;
    //-----------------------------------------------------------------------------------------------------------
    saveOpts.monochromeCompression = MonochromeCompression.CCIT4;
    saveOpts.monochromeDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.monochromeDownsampling = 1200;
    saveOpts.monochromeDownsamplingImageThreshold = 1800;
    //====================  END OF COMPRESSION =======================
    saveOpts.colorConversionID = ColorConversion.COLORCONVERSIONREPURPOSE;
    saveOpts.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
    ///
    saveOpts = new PDFSaveOptions();
    saveOpts.requirePermissionPassword = true;
    saveOpts.permissionPassword = "pink";
    saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    doc.saveAs( saveName, saveOpts );
    }
    }
    

    It takes a lot of work.

    too many errors with the code list.

    It should be re written from scratch.

    This gives a bash.

    //---------------------------------------------------
    //          Save as LOCKED pdf
    //---------------------------------------------------
    //
    //          Qwertyfly
    //          03/07/2015
    //          Version 1.0
    //
    //---------------------------------------------------
    //
    //          Set your password here
    var pass = 'pink';
    //
    //---------------------------------------------------
    if ( app.documents.length > 0 ) {       //make sure we have a file open to work with
        var doc = app.activeDocument;
        if ( doc.fullName.toString().substr(doc.fullName.toString().lastIndexOf('.')) == ".ai" ){       //Make sure your working with an ai file
            var myFile = new File(doc.fullName.toString().substr(0,doc.fullName.toString().lastIndexOf('.')) + ".pdf");
            var saveOpts;
            setSaveOptions();
            saveFileToPDF(myFile);
        }else{alert("Active Document is not an '.ai' file")}
    }else{alert("No Document Open")}
    
    function saveFileToPDF(myFile){
        var originalInteractionLevel = userInteractionLevel;        //save the current user interaction level
        userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;      //Set user interaction level to suppress alerts
        doc.saveAs(myFile,saveOpts);        //Save File
        userInteractionLevel = originalInteractionLevel;        //Set user interaction level back to original settings
    }
    
    function setSaveOptions(){
        //  Setup Save Options
        saveOpts = new PDFSaveOptions();
        saveOpts.compatibility = PDFCompatibility.ACROBAT5;
        saveOpts.generateThumbnails = true;
        saveOpts.optimization = true;
        saveOpts.preserveEditability = true;
        saveOpts.bleedOffsetRect = [2,2,2,2];
        saveOpts.trimMarks = true;
        //=======================  COMPRESSION ===========================
        saveOpts.colorCompression = CompressionQuality.JPEGMAXIMUM;
        saveOpts.colorDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.colorDownsampling = 300;
        saveOpts.colorDownsamplingImageThreshold = 450;
        //-----------------------------------------------------------------------------------------------------------
        saveOpts.grayscaleCompression = CompressionQuality.JPEGMAXIMUM;
        saveOpts.grayscaleDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.grayscaleDownsampling = 300;
        saveOpts.grayscaleDownsamplingImageThreshold = 450;
        //-----------------------------------------------------------------------------------------------------------
        saveOpts.monochromeCompression = MonochromeCompression.CCIT4;
        saveOpts.monochromeDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.monochromeDownsampling = 1200;
        saveOpts.monochromeDownsamplingImageThreshold = 1800;
        //====================  END OF COMPRESSION =======================
        saveOpts.colorConversionID = ColorConversion.COLORCONVERSIONREPURPOSE;
        saveOpts.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
        ///
        saveOpts.requirePermissionPassword = true;
        saveOpts.permissionPassword = pass;
        saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    }
    
  • I can't save a PDF with the same name

    I can't save pdf files with the same name on the network drive in our society. I have full control over this network drive and can do anything create/read/write/change. Other programs work fine, but not Adobe Reader. I can save a pdf file with a different name, but when I try to save as in XI or replace as in DC had an error: the file is read-only or opened by someone else. Save the document under a different name or in a different folder.

    By the way, Acrobat Pro, I got the same message.

    reader_error.png

    Hi igorp74028164,

    Please provide the exact point of the software & OS installed on your system. Also check if it is there any update available for the software after crossing "" help > check updates "»

    Follow this thread to reset the preferences for the acrobat software. : - How to reset preference settings in Acrobat format.

    Also please check if this file is saved to the network drive or local, if its network on Please save it on local disk & then check. Make sure also that this preview pane must be closed in windows Explorer.

    Kind regards

    Christian

  • How to save a PDF file with zoom as TIFF/PNG of quality equal?

    I have a graphic photographic resolution in PDF (vector graphics). Zoom in Acrobat results in an impeccable oversampled image you expect from vector graphics. However, I can not save the PDF upscale as an oversampled TIFF or PNG - I get horrible artifacts. How can I get Acrobat to save the PDF with zoom a PNG/TIFF image?

    Thank you very much...

    You can get what you want with instant tool under editing, AA XI. This will give you a screenshot of what is shown on the screen. The best way is to open the vector graphic in Illustrator and work directly with vector illustration.

  • I have a hp pavilion ze4200 laptop and he asks me to open a session with a password, inever due do this to see my front windows stuff how can I me without a password?

    I have a hp pavilion ze4200 laptop and he asks me to open a session with a password, inever due do this to see my front windows stuff how can I me without a password?

    Hello

    It is not possible to connect to the computer without entering the username and password...

    You can create a new user account and leave the section blank password... in this case it will not lead to enter the password.

  • Verizon offer security update, but I need a password to accept. I don't remember password even with suspicion. How can I get a new password

    original title: administrator password

    Verizon offer security update, but I need a password to accept. I don't remember password even with suspicion. How can I get a new password

    If you're a Verizon with their helpdesk to get assistance with their password.

  • I am new to adobe.  Saved gall .pdf for Adobe PANEUSE Xi and can be seen on the screen.  How to save the .pdf on my Flash drive file: L?

    I am new to Adobe.  Have the .pdf file in Adobe Reader Xi and can open and see on my screen.  How to save the .pdf on my Flash Drive file: L?

    I would advise against ever record directly onto a flash drive. For no reason I can understand this often broken leaves files behind.

    Instead, just save it to your desktop and drag it to the usual flash drive (in Windows Explorer or the Finder).

  • How to save a PDF file in Adobe so it appears correctly in the Firefox default drive?

    I have seen discussions on how to change your own settings of Firefox for poster correctly PDF files (documents to look at a PDF in Firefox 19 +) However, I'm looking for a solution on how to save a PDF file so that they display correctly in the new default Firefox reader. Our files PDF is bad looking and I can not go in the browser of each clients and difficulty settings (http://www.cherrybekaertbenefits.com/wp-content/uploads/2014/07/ACA_Infographic_072114.pdf). Meet them all parameters within the Acrobat Distiller is going to fix this without the Viewer to enter their own arrangements?

    Hmm, not a subtle difference.

    We did not have many experts PDF or Adobe Illustrator users post advice here; those who might be sprinkled around on other forums, blogs or support sites.

    I noticed when you view the properties of the PDF in Adobe Reader that the PDF has been created with optimization for active fast Web view. This is a feature that allows the progressive rendering of PDF files over a slow connection (http://helpx.adobe.com/illustrator/kb/optimize-native-pdf-file-sizes.html#...). You can try to re - generate the PDF file with this feature turned off to see if that makes a difference?

  • How can you find your restrictions password if you remember?

    How can you find your restrictions password if you do not remember?

    Read How to reset the forgotten password Restrictions with iPhone restore?

  • my audio syestem of beats went when I choose windows 8, how can I return it with the full version?

    my audio syestem of beats went when I choose windows 8, how can I return it with the full version? I have hp pavilion dv4 5110tx

    Hello

    Try the following.

    Download IDT Audio Installer on the link below and save it in your downloads folder.

    http://ftp.HP.com/pub/SoftPaq/sp59501-60000/sp59882.exe

    One time finished, open windows control panel, open Device Manager and open sound, video and game controllers.  Right click on the IDT device and select uninstall - also, you should get a command prompt to delete the current driver, check the box allow this and then proceed to uninstall.

    Then, download and reinstall the Chipset driver on the following link.

    Chipset Driver - Windows 8.

    After reinstalling, restart the laptop and let Windows load completely.  Open your download folder, right-click on the IDT Installer and select "Run as Administrator" to launch the installation.  When this has completed, restart the computer again before checking if the Beats Audio is now listed in the windows control panel.

    Kind regards

    DP - K

  • How can I get a new password for My Life (unisa)

    How can I get a new password for My Life

    Hello

    Please delete the personal information in your message, because it can be used by a person who
    you cause a lot of real worries. And it is not necessary here.

    -------------------------------------------------------------------------------------

    Answers - Feedback is for questions about the site of answers.

    Answers is a site of support of peers supported for Windows and other Microsoft products and
    has no influence on MyLife.

    Help with your problems, contact the assistance of MyLife.

    MyLife
    http://experts.Windows.com/

    I hope this helps.

  • How to protect a directory with password in windows XP?

    How to protect a directory with password in windows XP?

    XP does not use passwords to protect resources. NT operating systems use the permissions. Here's the information to help you with that:

    How to disable Simple Sharing and set permissions on a folder shared in Windows XP (Pro only)
    http://support.Microsoft.com/?kbid=307874

    How to configure file sharing in Windows XP (includes information about permissions):
    http://support.Microsoft.com/kb/304040

    By default in XP Home you can only files and folders under My Documents "private". Otherwise, to display the Security tab in Windows XP Home, restart in safe mode and log on with an account that has administrator privileges. Go in Safe Mode, press the F8 key as the computer starts. That you will get the menu where you can choose Safe Mode.

    Note that the file system must be NTFS, FAT32 not.

    Passwording of folders is not possible unless you their zip. When you do (right click on a folder, then "send to > compressed folder") and then open the zip file, you will find an option under file > "add a password." Otherwise, use a third-party software. Google "password protect folders".
    MS - MVP - Elephant Boy computers - don't panic!

  • How can I recover my administrator password

    How can I recover my administrator password

    Hello

    It is available on you microsoft information help on problems with passwords

    http://support.Microsoft.com/kb/940765

    If you are unable to connect to Windows 7 or Windows Vista, you can use the Windows Vista System Restore feature, or the Windows 7 system restore feature.

    You may be unable to connect to Windows Vista or Windows 7 in the following scenarios:

    • Scenario 1: You recently set a new password for the protected administrator account. However, you don't remember the password.
    • Scenario 2: You type the correct password. However, Windows Vista or Windows 7 does not accept the password because the system is damaged.
    • Scenario 3: You delete a protected administrator account. Now, you cannot connect to another administrator account.
    • Scenario 4: You change an administrator account protected with a standard user account. Now, you cannot connect to another administrator account.

    ________________________________________________________

    except that we cannot help you

    read this microsoft's policy NOT to provide assistance to crack passwords when they are lost or forgotten:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-security/keeping-passwords-secure-Microsoft-policy-on/a5839e41-b80e-48c9-9d46-414bc8a8d9d4

  • How to scan color PDF with Photosmart 6520

    How to scan color PDF with the Photosmart 6520? They only appear on my Mac in black and white and I don't see any option to specify the color on the device.

    Hello
    The workflow default scanning set up to scan documents in black and white. Be sure to change the settings for scanning to scan color documents:

    1 open the HP utility and select your device.
    2. based on Scan Settings open the "Scan to Computer".
    3. click on the tab scan tasks.
    4. Select the affected shortcut and click on change... (or double-click on the shortcut).
    5. in the section of scanning from an HP device, click the blue triangle or button view details to expand the menu.
    6. in the expanded menu now, open the drop-down next to the Mode
    7. now select the color option, and then click OK to save the changes. The next scanned using this workflow is displayed in color.

    Kind regards
    Shlomi

  • How can I get a certificate password?

    How can I get a certificate password?

    You must get in touch with the author or distributor of these documents to find out exactly how you can open them in the drive. I guess they have been encrypted using a certificate. Only who created the document (and it costed) you can access it. Is there anything we (or Adobe) can do to help you have access to all documents.

Maybe you are looking for

  • How 'link' an email address in the body of an email?

    I know how to link a web url, but I can't find a way to link an email address in the body of an email. I want the recipient of my email to be able to click on the email address that appears in my message and it opened a new email to this address on h

  • Difference between the Tecra A, M and S series

    HelloWhat really is the difference between a, M and S Tecra series? Which should I choose?It is obvious that the Tecra is supposed to be a high-end standard in the range of the portable Toshiba, but why they do different Tecra series? I'm sorry if th

  • Tecra A3: Wireless connection problem

    I reinstalled windows xp prof after my laptop crashed and lost files.Everything works except for the wireless connection, it is turned on, but windows will not see it? Any ideas? I tried to download different drivers from the driver from toshiba supp

  • Laptop built in camera is not working... problem solved earlier but I forgot how to fix

    I contacted Lenovo support about a month ago as the camera of my laptop did not work. A member of the team had access/remote of my laptop and solved the problem by disabling a certain privacy setting. After that, my camera worked. However, I think I'

  • Problem of recovery Internet 2002F

    Hello The other day my Macbook Pro A1278 was about to run out of battery, so I plugged in the charger. Almost immediately, the screen went blank and when I restarted it I saw a file flashing with an exclamation mark. I launched the internet (command-