Possible Bug: Excessive writing to TEMP directory for any PDF metadata change

I am using the latest version of Adobe Bridge CC 6.1.0.116 x64 for Windows.
I use Adobe Bridge to manage large archives of scanned PDF's composed of full page JPG's.
Whenever I attempt to change metadata on these PDF's, Bridge performs heavy writing to the TEMP directory. Even when using an SSD, changing any metadata is very slow and the TEMP writes are enough to produce noticeable wear on the disk.
[I would have attached screenshots, but I get a "That image type is forbidden" error in these forums whenever I attempt to upload screenshots (either JPG or PNG; and they are less than 900px on longest edge).]
Resource Manager:
IMAGE: Bridge.exe
FILE:...\Temp\A9R12b8-1315f76
WRITE: 349,175,808 B/sec
The Task Manager also shows 356MB/sec writes for over fifteen seconds for each metadata change, with brief pauses between files.
This amount of data written amounts to about 20GB each minute!
(Note that the files I was modifying in this test averaged only about 100MB each.)
Bridge did not always do this. I remember earlier versions performed metadata changes swiftly without these excessive write issues. I do not remember in which version this problem began, however.
Resaving the files in question does not solve the problem. I have also tried exporting as Postscript and re-Distilling, and even exporting JPG's and recreating the PDF from scratch.
This problem seems to affect any PDF that is a collection of full-page JPG's. The PDF's that I have made from TIFF's or non-rendered text do not cause this issue. On non-JPG based PDF's metadata changes are fast and do not cause noticeable writes to the TEMP directory.

Thanks a lot Rob. That works.
"Rob Woollen" <[email protected]> wrote in message
news:3f29b665$[email protected]..
java -Djava.io.tmpdir=<tmpdir path> weblogic.appc
-- Rob
Bernhard Lenz wrote:
I realized that weblogic.appc creates a working directory
/var/tmp/appcgen
when compiling ejbs. What happens if 2 developers run weblogic.appc atthe
same time? Will they be using the same temp directory and therefore getin
each others way? I'd rather like to create a temp directory which isunique
for the machine. Our build scripts would be able to create such adirectory
but I couldn't find anything in appc to set the temp directory.
Do you have any advice?
Thanks for your help.
Greetings
Bernie

Similar Messages

  • Setting temp directory for editing original files

    Experts,
    Is there a way to default the temporary working directory where a document is stored while editing it in a DIR?  This is what we are experiencing:  When a user creates a DIR and uploads a Word file into the DIR, the Original field on the document details perserves the path where the file was uploaded from, i.e. s:/share_drive.  When another user goes into the same DIR and tries to edit the file, the program tries to create a working copy of the file in u:/share_drive.  If the second user does not have access to this path, they get an error.
    Is there a way to set the Original field an all files uploaded and stored in DMS to be a common working directory like c:\temp?

    Hi Andrew
    Th eoriginal is checked into sap/content server
    Te original gets saved in a temp location in the users desktop when the user opens the original from DIR.
    Check whether te folowing setting is maintained against pc or not.
    SPRO-----DMS-Define Data CarrierDefine data carrier type servers and frontend maintain the temp location like C:\temp or tmp.
    Regards
    Prasad K

  • Local/temp directory for Reviewer comments?

    I used Captivate Reviewer (v7) to open and add comments to a CREV file from a colleague. I saved the comments locally, then moved the xml file to a network drive (moved, not copied). My colleague imported my comments, made changes, removed/deleted all comments from the project, renamed the project, then republished (and set a new comments directory). I opened the new CREV file and my comments were still there.
    I assume this is because those have saved/cached/backed up somewhere locally (even though I moved the file I created)? How can I get rid of them? I have searched and can't find any comments files on my local drives.

    Thanks! Actually firefox DOES create a folder called Cache and fill it with lots of other folders. The problem is that when it comes to actual files, they land at the original appdata/local folder :(

  • Writing a java program for generating .pdf file with the data of MS-Excel .

    Hi all,
    My object is write a java program so tht...it'll generate the .pdf file after retriving the data from MS-Excel file.
    I used POI HSSF to read the data from MS-Excel and used iText to generate .pdf file:
    My Program is:
    * Created on Apr 13, 2005
    * TODO To change the template for this generated file go to
    * Window - Preferences - Java - Code Style - Code Templates
    package forums;
    import java.io.*;
    import java.awt.Color;
    import com.lowagie.text.*;
    import com.lowagie.text.pdf.*;
    import com.lowagie.text.Font.*;
    import com.lowagie.text.pdf.MultiColumnText;
    import com.lowagie.text.Phrase.*;
    import net.sf.hibernate.mapping.Array;
    import org.apache.poi.hssf.*;
    import org.apache.poi.poifs.filesystem.*;
    import org.apache.poi.hssf.usermodel.*;
    import com.lowagie.text.Phrase.*;
    import java.util.Iterator;
    * Generates a simple 'Hello World' PDF file.
    * @author blowagie
    public class pdfgenerator {
         * Generates a PDF file with the text 'Hello World'
         * @param args no arguments needed here
         public static void main(String[] args) {
              System.out.println("Hello World");
              Rectangle pageSize = new Rectangle(916, 1592);
                        pageSize.setBackgroundColor(new java.awt.Color(0xFF, 0xFF, 0xDE));
              // step 1: creation of a document-object
              //Document document = new Document(pageSize);
              Document document = new Document(pageSize, 132, 164, 108, 108);
              try {
                   // step 2:
                   // we create a writer that listens to the document
                   // and directs a PDF-stream to a file
                   PdfWriter writer =PdfWriter.getInstance(document,new FileOutputStream("c:\\weeklystatus.pdf"));
                   writer.setEncryption(PdfWriter.STRENGTH128BITS, "Hello", "World", PdfWriter.AllowCopy | PdfWriter.AllowPrinting);
    //               step 3: we open the document
                             document.open();
                   Paragraph paragraph = new Paragraph("",new Font(Font.TIMES_ROMAN, 13, Font.BOLDITALIC, new Color(0, 0, 255)));
                   POIFSFileSystem pofilesystem=new POIFSFileSystem(new FileInputStream("D:\\ESM\\plans\\weekly report(31-01..04-02).xls"));
                   HSSFWorkbook hbook=new HSSFWorkbook(pofilesystem);
                   HSSFSheet hsheet=hbook.getSheetAt(0);//.createSheet();
                   Iterator rows = hsheet.rowIterator();
                                  while( rows.hasNext() ) {
                                       Phrase phrase=new Phrase();
                                       HSSFRow row = (HSSFRow) rows.next();
                                       //System.out.println( "Row #" + row.getRowNum());
                                       // Iterate over each cell in the row and print out the cell's content
                                       Iterator cells = row.cellIterator();
                                       while( cells.hasNext() ) {
                                            HSSFCell cell = (HSSFCell) cells.next();
                                            //System.out.println( "Cell #" + cell.getCellNum() );
                                            switch ( cell.getCellType() ) {
                                                 case HSSFCell.CELL_TYPE_STRING:
                                                 String stringcell=cell.getStringCellValue ()+" ";
                                                 writer.setSpaceCharRatio(PdfWriter.NO_SPACE_CHAR_RATIO);
                                                 phrase.add(stringcell);
                                            // document.add(new Phrase(string));
                                                      System.out.print( cell.getStringCellValue () );
                                                      break;
                                                 case HSSFCell.CELL_TYPE_FORMULA:
                                                           String stringdate=cell.getCellFormula()+" ";
                                                           writer.setSpaceCharRatio(PdfWriter.NO_SPACE_CHAR_RATIO);
                                                           phrase.add(stringdate);
                                                 System.out.print( cell.getCellFormula() );
                                                           break;
                                                 case HSSFCell.CELL_TYPE_NUMERIC:
                                                 String string=String.valueOf(cell.getNumericCellValue())+" ";
                                                      writer.setSpaceCharRatio(PdfWriter.NO_SPACE_CHAR_RATIO);
                                                      phrase.add(string);
                                                      System.out.print( cell.getNumericCellValue() );
                                                      break;
                                                 default:
                                                      //System.out.println( "unsuported sell type" );
                                                      break;
                                       document.add(new Paragraph(phrase));
                                       document.add(new Paragraph("\n \n \n"));
                   // step 4: we add a paragraph to the document
              } catch (DocumentException de) {
                   System.err.println(de.getMessage());
              } catch (IOException ioe) {
                   System.err.println(ioe.getMessage());
              // step 5: we close the document
              document.close();
    My Input from MS-Excel file is:
         Planning and Tracking Template for Interns                                                                 
         Name of the Intern     N.Kesavulu Reddy                                                            
         Project Name     Enterprise Sales and Marketing                                                            
         Description     Estimated Effort in Hrs     Planned/Replanned          Actual          Actual Effort in Hrs     Complexity     Priority     LOC written new & modified     % work completion     Status     Rework     Remarks
    S.No               Start Date     End Date     Start Date     End Date                                        
    1     setup the configuration          31/01/2005     1/2/2005     31/01/2005     1/2/2005                                        
    2     Deploying an application through Tapestry, Spring, Hibernate          2/2/2005     2/2/2005     2/2/2005     2/2/2005                                        
    3     Gone through Componentization and Cxprice application          3/2/2005     3/2/2005     3/2/2005     3/2/2005                                        
    4     Attend the sessions(tapestry,spring, hibernate), QBA          4/2/2005     4/2/2005     4/2/2005     4/2/2005                                        
         The o/p I'm gettint in .pdf file is:
    Planning and Tracking Template for Interns
    N.Kesavulu Reddy Name of the Intern
    Enterprise Sales and Marketing Project Name
    Remarks Rework Status % work completion LOC written new & modified Priority
    Complexity Actual Effort in Hrs Actual Planned/Replanned Estimated Effort in Hrs Description
    End Date Start Date End Date Start Date S.No
    38354.0 31/01/2005 38354.0 31/01/2005 setup the configuration 1.0
    38385.0 38385.0 38385.0 38385.0 Deploying an application through Tapestry, Spring, Hibernate
    2.0
    38413.0 38413.0 38413.0 38413.0 Gone through Componentization and Cxprice application
    3.0
    38444.0 38444.0 38444.0 38444.0 Attend the sessions(tapestry,spring, hibernate), QBA 4.0
                                       The issues i'm facing are:
    When it is reading a row from MS-Excel it is writing to the .pdf file from last cell to first cell.( 2 cell in 1 place, 1 cell in 2 place like if the row has two cells with data as : Name of the Intern: Kesavulu Reddy then it is writing to the .pdf file as Kesavulu Reddy Name of Intern)
    and the second issue is:
    It is not recognizing the date format..it is recognizing the date in first row only......
    Plz Tell me wht is the solution for this...
    Regards
    [email protected]

    Don't double post your question:
    http://forum.java.sun.com/thread.jspa?threadID=617605&messageID=3450899#3450899
    /Kaj

  • TS2094 the page on the screen is fully to the right of the screen how is it possible to centralize to the middle thanks for any help

    would appreciate any help on this matter how to centralize the window it is fully to the right of the screen it is an imac 20" 2006 model

    Even when I move the screen far to the right as I can, there is at least a pixal or two that I can drag to the left.
    Are you wanting to auto center the screen.  You would need to use AppleScript to do this.
    How are you trying to move the screen to the center? Any, why does this fail you?
    Robert

  • How to set a root directory for file management in web application

    Is it possible to set a default root directory for file management for a web application ?
    We would upload some files and store them in the web server.
    When we write the uploaded files without any path, the files are written in the config directory into the jdeveloper embedded oc4j directory.
    When we write the uploaded with a relative path ("/somedir/filename"), the files are written in C:/somedir/filename.
    We would like that all file management with relative path into the web application refer automatically to a given root directory (for example defined in web.xml).
    Is it possible ?

    I'm using the standard upload in adf faces.
    The problem is not during upload. This is managed in a temporay directory defined in web.xml. The problem is for writing the file that was uploaded (upload give us an inputStream we have to write somewhere, eventually after unzipping).
    Here is an example of our current code.
    if (mimeType.equals("application/x-zip-compressed") |
    mimeType.equals("application/zip")) {
    File destZipFile =
    new File(rootDirectory + "/" + parametersDirectory +
    "/" + uploadedFile.getFilename());
    BufferedInputStream isZipFile =
    new BufferedInputStream(uploadedFile.getInputStream());
    FileOutputStream fosZipFile =
    new FileOutputStream(destZipFile);
    BufferedOutputStream bosZipFile =
    new BufferedOutputStream(fosZipFile, BUFFER);
    // read and write until last byte is encountered
    while ((currentByte = isZipFile.read(data, 0, BUFFER)) !=
    -1) {
    bosZipFile.write(data, 0, currentByte);
    }

  • Redirection of deployment.user.cachedir to Windows Temp-directory

    Hello,
    I have a problem with the configuration of the cache-directory on a Windows Terminal-Server.
    On a Windows Terminal-Server each registered user gets a Windows temp-directory, which can be seen in variable %TEMP% and looks like "D:\temp\1" or "D:\temp\2" and so on.
    Now I want to redirect the cache-directory, set in file deployment.properties, property deployment.user.cachedir, to that temp-directory for the user.
    How can I configure JavaWS correctly ?
    Please help !! Thanks in advance
    Achim

    Thank you for your response. I am using jdk1.3.1 and
    jre 1.4.2_01 which I just downloaded the other day.
    The properties did indeed list out in the console, but
    I will check a previous jre to see if they are there
    as well. I agree that if the property is available,
    then it should return the value.5. What system properties can be read by applets, and how?
    In both Java-enabled browsers and the appletviewer, applets can read these system properties by invoking System.getProperty(String key):
    key               meaning
    java.version          Java version number
    java.vendor          Java vendor-specific string
    java.vendor.url     Java vendor URL
    java.class.version     Java class version number
    os.name          Operating system name
    os.arch          Operating system architecture
    os.version     Operating system version
    file.separator     File separator (eg, "/")
    path.separator     Path separator (eg, ":")
    line.separator     Line separator
    Applets are prevented from reading these system properties:
    key               meaning
    java.home          Java installation directory
    java.class.path     Java classpath
    user.name          User account name
    user.home          User home directory
    user.dir          User's current working directory
    To read a system property from within an applet, simply invoke System.getProperty(key) on the property you are interested in.
    (http://java.sun.com/sfaq/#hideProps)
    Br - Johan

  • How to use remote directory for external table

    Hi Folks,
    I have 2 Oracle 11GR2 64 bit database installed on Win 2008 server as prod1 and prod2.
    I have one directory created on prod1 server as EXT_TAB_DIR using the path as D:\OrsDWtest_dir .
    I want to use this directory in Prod2 server and use external table using this remote directory.
    I am able to access the Prod1 directory from Prod2 machine and also i have created Network map drive as Z drive pointing to that prod1 D:\OrsDWtest_dir directory. Also i checked read and Write permissions are there . I am able to create the external table but when i try to fetch the data i m getting below error ..
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file IOMM_20121213_060736.csv in EXT_TAB_DIR not found
    now my doubt is this possible ? Can we use remote directory for External table ? or is there is there any alternative way to achieve same ?
    Thanks & Regards,
    Vikash Jain(DBA)

    could you confirm the name and the existence of this file "IOMM_20121213_060736.csv" ?
    same error like:
    http://www.oracle-base.com/articles/9i/external-tables-9i.php
    if the load files have not been saved in the appropriate directory the following result will be displayed.
    SQL> SELECT *
      2  FROM   countries_ext
      3  ORDER BY country_name;
    SELECT *
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 14
    ORA-06512: at line 1Edited by: Fran on 10-ene-2013 23:32

  • Temp directory

    Hello,
    I have an applet that donwloads files to a temp directory which is created in the filesystem if it doesn't exist. The name of the temp directory is taken from an properties file that is bundle into the jar file.
    I would like to use as temp directory for downloads the browser temp directory instead of a temp directory specified in a properties file. But how can my applet get the browser temp directory?
    Thanks

    Please explain.
    There is no temp directory on the iPod.
    Many applications create temp directories in many different places.

  • Javahost .in and .out files in temp directory?

    Hi Folks,
    Has anyone ever seen temp files being created by the javahost process, which are stored in the temp directory for the user that runs the javahost service (obviously running windows) ?
    The temp files have this kind of naming:
    Charts_xxxxx_xxxxxxxxxx.javahost.in
    or
    Charts_xxxxx_xxxxxxxxxx.javahost.out
    In our case we have clustered OBIPS servers and javahosts. both javahosts services run under the same user account, but we only see the temp files being accumulated on one of the servers (in <AccountName>\Local Settings\Temp directory)
    Is there a way to turn this on/off? are these safe to delete?
    Thanks in advance for any help with this.

    ok, got this one resolved... i found out that these temp files are a side effect of increasing the javahost logging using the "logconfig.txt" file found in OracleBI\web\javahost\config directory.
    here is the default setup (top of this file)...
    # Default global logging level.
    # This specifies which kinds of events are logged across
    # all loggers. For any given facility this global level
    # can be overriden by a facility specific level
    # Note that the ConsoleHandler also has a separate level
    # setting to limit messages printed to the console.
    .level= WARNING
    #.level= INFO
    #.level= ALL
    #.level= OFF
    we can see the .level= WARNING is set
    on our server, someone had set the level to ALL like this:
    # Default global logging level.
    # This specifies which kinds of events are logged across
    # all loggers. For any given facility this global level
    # can be overriden by a facility specific level
    # Note that the ConsoleHandler also has a separate level
    # setting to limit messages printed to the console.
    #.level= WARNING
    #.level= INFO
    .level= ALL
    #.level= OFF
    this results in temp files left in the temp directory of whatever user runs the javahost service.

  • Configuring Crystal's temp directory

    I am using CR 2008 (merge module installation)
    I want to use a non-default temp directory for report generation because the default C: drive is low on space.
    I have tried the steps given here: http://blakepell.spaces.live.com/blog/cns!808E32F75B9CF425!178.entry   (direct registry edit), but I see no change.
    Questions:
    1. How do I configure the temp directory?
    2. What do temp files look like as they are being generated?  (File name / extension?)
    Thanks!

    CR uses the Windows Temp folder as specified in the Environment Variables. To change go into Control Panel, System, Advanced Tab. Change it for both the user and System properties

  • Specify the location for any newly added column

    Hi friends,
    Is it possible in Oracle to specify the location for any newly added column. why it always goes to
    the last , I want to add a new column at first.
    If it is possible and anybody knows please tell me.
    Thanks & Regards
    Chandrakishore Bankhede

    Hi Chandrakishore,
    Not exactly a spatial question but the answer is "no" as far as I am aware.
    TOAD for Oracle has a nice feature called "Rebuild Table" that provides a GUI interface for redefining and moving columns around. Basically it generates all the required DDL for you - it saves all the constraints, indexes, triggers, etc. Then it creates a new table with your changes, renames the old table with a suffix and replaces all the constraints, indexes, triggers on the new table. Most helpful.
    However - see this makes the post spatial in nature :) - for as long as I have been around this feature of TOAD has not been able to handle SDO_GEOMETRY columns - failing with "ORA-22917: use VARRAY to define the storage clause". The good news is the new TOAD 10 now is free of this bug.
    This is not meant to be a commercial for TOAD, I just don't know of any other product with this feature. Others may know of similar things perhaps or you can write a function yourself in PL/SQL.
    Cheer,
    Paul

  • Unable to Extract to Temp Directory (EX11 error for InDesign CC)

    Good Afternoon,
    I purchased the annual subscription for the creative cloud suite, for use on my Windows 7 PC.  All programs downloaded and installed just fine, with the exception of InDesign.  I receive the error "Installation failed - unable to extract to temp directory.  Please contact customer support (EX11)."
    Screenshot of error provided: Dropbox - Screenshot 2014-09-07 10.16.48.png
    In searching through the forums, I found several similar instances; however, I didn't really see any resolutions.  It just so happens that InDesign is the program I need most for a project with a deadline approaching this week.  Figures it would be the one that gives me trouble on the install
    Any assistance that could be provided, as timely as possible, would be very greatly appreciated.  Thank you in advance!

    I resolve this error by searching through other forums.
    Apparently there is a bug where if your Windows account name is longer than 12 characters, you are unable to install InDesign.  My administrator account name is 13 characters.  I created a second administrator account, with the name "test" and I was able to then install InDesign without any issue.
    I hope that others who have the same issue I did find this to be helpful.

  • [svn:fx-trunk] 12936: -make sure the bundles directory for airspark is not included in the package fixes bug SDK-24552

    Revision: 12936
    Revision: 12936
    Author:   [email protected]
    Date:     2009-12-14 19:40:23 -0800 (Mon, 14 Dec 2009)
    Log Message:
    -make sure the bundles directory for airspark is not included in the package fixes bug SDK-24552
    -remove (from svn) the en_US/docs directories for textLayout because these directories and dita files are created by asdoc in the doc target
    -updated the main build.xml to not include the playerglobal project
    -updated fat-swc targets in osmf,automation_spark,automation_flashflexkit,automation,airspark, and textlayout to remove the doc directory.
    QE notes: make sure copylocales works properly
    Doc notes: no
    Bugs: SDK-24552
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24552
        http://bugs.adobe.com/jira/browse/SDK-24552
    Modified Paths:
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/projects/airspark/build.xml
        flex/sdk/trunk/frameworks/projects/automation/build.xml
        flex/sdk/trunk/frameworks/projects/automation_flashflexkit/build.xml
        flex/sdk/trunk/frameworks/projects/automation_spark/build.xml
        flex/sdk/trunk/frameworks/projects/osmf/build.xml
        flex/sdk/trunk/frameworks/projects/textLayout/build.xml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/airframework/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/automation/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/automation_flashflexkit/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/automation_spark/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/framework/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/rpc/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/en_US/docs/

    Well, I've tried compiling a package and I have modified the PKGBUILD file to look like this now. (Keeping it as simple as possible)
    pkgname=dvbcut-svn
    pkgver=16
    pkgrel=1
    pkgdesc="DVBCUT-svn is an application that allows you to
    edit MPEG files. ie: Remove TV ads. (SVN version: Fri, 01 Dec 2006)."
    url="http://dvbcut.sourceforge.net"
    depends=('qt' 'libao')
    makedepends=('subversion' 'scons')
    conflicts=('dvbcut' 'ffmpeg')
    provides=('dvbcut')
    source=()
    md5sums=()
    _svntrunk=https://svn.sourceforge.net/svnroot/dvbcut/trunk
    _svnmod=dvbcut
    build() {
    cd $startdir/src
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    cd $_svnmod
    msg "SVN checkout done or server timeout"
    msg "Starting make..."
    make || return 1
    # vim:syntax=sh
    I then run makepkg PKGBUILD and let it do its thing
    It ends with this...
    scons: done building targets.
    ==> Removing info/doc files...
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .PKGINFO file...
    ==> Generating .FILELIST file...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Compressing package...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Finished making: dvbcut-svn  (Sun Jan 21 19:08:28 UTC 2007)
    I'm not sure what's causing this error message.
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    I'll try installing it and see how it goes.

  • Installation error for Indesign CC "Unable to extract to temp directory. Contact Customer Support EX11". What can I do?

    Haven't been able to install Adobe Indesign CC through Creative Cloud. Gives the following installation error "Unable to extract to temp directory. Contact Customer Support EX11". What can I do?

    Jeremy Jediel Gongora then it is likely a file permission failure as was previously discussed.  You can find details on how to adjust the file permissions of your temp directory at Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.
    I would also recommend reviewing your installation log files for additional error messages.  You can find details on how to locate and interpret the installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

Maybe you are looking for