Problems with signing certificate for Adobe CC Applications

I've just purchased Adobe CC and set out to install quite a few apps.  Photoshop, Illustrator and Fireworks all installed without a hitch. 
Then I tried installing the Edge tools and Lightroom, and that's when the trouble started.
They failed.  The error was this (I've seen this several places):
Exit Code: 7Please see specific errors below for troubleshooting. For example,  ERROR: DW006 ... -------------------------------------- Summary -------------------------------------- - 0 fatal error(s), 2 error(s)  ----------- Payload: AdobeLightroom5CCMPkg-mul 5.0.0.0 {4b06fc24-6249-4c57-9830-6008a3ce9a80} -----------ERROR: DW006: Apple Package failed to install successfully.ERROR: Third party payload installer Adobe Photoshop Lightroom 5.pkg failed with exit code: 1-------------------------------------------------------------------------------------
Did some research and tried the following things:
Ran the cleaner tool
booted in to safe mode and tried reinstalling
uninstall/reinstall AIR (I think this was an outdated suggestion)
Verified and Fixed disk permissions
Created new admin user account and tried installing from there
No luck.   I checked the install logs:
     installer: Certificate used to sign package is not trusted. Use -allowUntrusted to override.
OK - something with the certificte.  So I grab the downloaded packages from the /tmp folder for the apps.  When I try to install the packages there, I get the warning that the package is not signed by a trusted certificate - I say install anyway and everything works! 
Except Lightroom 5.  I can't get that oe to go.  It never asks me to override the certificate.  It just tries to install and fails just as it did through Adobe CC Desktop.  I can dig in to the deploy packages and install it there, but when I launch it, it asks for my serial number, which we don't have via Adobe CC, correct?
So what's going on?  I seem to be the only person having this problem.  I spent 3-4 hours this morning with Adobe support.  I have them screen control and they couldn't get it installed.
Any ideas?  I'm on a newest version MacBook Air, i7, 8GB RAM, 256GB SSD running OS X 10.8.4.  (I swear at one point scrolling through the endloess lines of install logs I saw something about my os not being supported, but that can't be right, can it?  I'm 100% current - I can't tbe too current, right?)
Thanks in advance,
Adam Barney

Wow.  I have no idea how this happened, but at some point, I lost my Apple Root Certificate - that seems important.  I reinstalled it from http://www.apple.com/certificateauthority/ and all is right with the world - and Adobe CC Desktop Installer.

Similar Messages

  • Problems with signing up for apps with a blackberry curve 9300

    I bought a new curve on wind mobile, and I signed up for a blackberry ID.  I must have forgotten the password because it won't let me in now and when I try to reset it, the site says that the verification code (the one that's used to make sure I am not a spam-bot) is incorrect.  I've tried more than ten times, but I keep getting the same message.  Is anyone else having the same trouble?  Any known solution?
    cheers
    Darci

    Wow.  I have no idea how this happened, but at some point, I lost my Apple Root Certificate - that seems important.  I reinstalled it from http://www.apple.com/certificateauthority/ and all is right with the world - and Adobe CC Desktop Installer.

  • Problem with 'install credential for Adobe Document Services'

    Hi Folks,
      I am trying to install credential for Adobe Document Services but I have got problem with some facts that are explained in tutorial how to install credential.
      1. I do not have directory persistentcom.adobe~Trust.. under my directory server0
      2. where to find 'filename.pfx'?
      3. I do not have Document Services Configuration in my visual Administration tool
      The tutorial that I am trying to do is located on <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20java/installing%20adobe%20document%20services%20credentials.pdf">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20java/installing%20adobe%20document%20services%20credentials.pdf</a>
      So if someone can help me how to overcome this problem I would be very thankful.
       Kind Regards to all.
    Aleksandar

    Hi Sharadha,
    You could go to SAP Software Distribution Center with in SAP Market place . You could search for adobe ther in S/W search . It will list all the available Aobe designer. Latest version is ADOBE LIVECYCLE DESIGNER 7.1   .
    regards

  • Problems with signed Applet for File Download under JRE 1.4 (works with 1.3

    Dear all,
    i encountered a very strange behaviour with JRE 1.4x. A signed applet used for file download worked on all platforms (Windows NT, 2000 and XP wth/wthout SP...) until I installed JRE 1.4.x (1.4.1 or 1.4.2)
    I get an EOFException when downloading binary files (for ASCII it works fine) when trying to readByte() from a DataInputStream. But not immideately, but after x bytes in the while-loop. Security is fine (I know there have been changes to that in jre 1.4, the applet itself can be started an runs with ASCII files for transfer)
    Does anyone know, what has changed in jre1.4.
    As I said, it works fine under jre 1.3.x
    The relevant code is below: byte bt = dis.readByte(); causes the error
    try{
    // Get URL from Server
    URL uFile = new URL(sFilename);
    sThisURLFile = uFile.getFile();
    Integer inte = new Integer(i);
    //open input stream for the file on server
    DataInputStream dis = new DataInputStream(new BufferedInputStream
    (uFile.openConnection().getInputStream()));
    //open output stream for the file on local drive
    String sFilenameOnly = sThisURLFile.substring(sThisURLFile.lastIndexOf('/')+1);
    int iDotPos = sFilenameOnly.lastIndexOf(".");
    String sExt;
    if (iDotPos > 0) {
    sExt= sFilenameOnly.substring(iDotPos);
    } else {
    sExt = "";
    File fileOut = new File(sDownloadDir + sThisURLFile.substring(sThisURLFile.lastIndexOf('/')+1) );
    DataOutputStream dos = new DataOutputStream(new
    BufferedOutputStream(new FileOutputStream(fileOut)));
    //read one byte from input stream, and write that byte to output stream
    long nByte = 0;
    int iCnt = 0;
    iFilesizeDone ++;
    while (nByte < iFilesize){
    String sErrPs = new String();
    try{
    sErrPs = "00";
    byte bt = dis.readByte();
    sErrPs = "01";
    dos.writeByte(bt);
    } catch (EOFException ee)
    System.err.println("internal EOFException: " + ee.getMessage());
    System.out.println("Error Filesize is " nByte " of " iFilesize "---" + sErrPs);
    break;
    nByte++;
    iFilesizeDone ++;
    iCnt ++;
    if(iCnt >= 10240) {
    ShowProgress(nByte, iFilesize, iFilesizeDone, iFilesizeTotal); // repaint does not work during init-procedure
    iCnt = 0;
    line = "Progress: Total: " + ((iFilesizeDone*100)/iFilesizeTotal) + " perc, " + iFilesizeTotal/1024 +" kbytes" ;
    labLine.setText(line);
    //dos.flush(); // improves Client performance (Agent-Call!)
    dis.close();
    dos.close();
    }// End try
    catch (EOFException ee)
    System.err.println("EOFException: " + ee.getMessage()e);
    catch (SecurityException se)
    System.err.println("SecurityException: " + se.getMessage());
    catch (IOException ioe)
    System.err.println("IOException: " + ioe.getMessage());

    perhaps they've changed something with the file blocking.
    btw, you should try to use something like this
    DataInputStream dis = new DataInputStream(is);
    byte[] buffer=new byte[8192];
    int numBytesRead;
    while ( dis.available()>0 ) {
         numBytesRead = dis.read(buffer);
    }               

  • ADCS problem with enroll certificates for computers.

    Hi All,
    There are PKI infrastructure:
    1 standalone root CA (Win 2008 Std, workgroup, offline)
    2 enterprise issuing CA (Win 2008 Ent, DC role, NPS role)
    In AD all root\issue CA certs is available, crl is available, Enterprise PKI console show OK status for all components,  etc.
    It seems work and right config.
    But there is one problem.
    PCs and DCs in domain cannot request computer cert from both CA.
    Manual enroll through mmc fails on domain members/domain controllers with error
        Source: CertificateServicesClient-CertEnroll
        Event ID: 13
        Certificate enrollment for Local system failed to enroll for a Workstation/Domain Controller certificate from ....(name of CA).... (The RPC server is unavailable. 0x800706ba (WIN32: 1722)).
        Autoenroll through GP/Manual enroll through Web-enrollment also failed.
    But!!! User enroll cert without problem. At least through mmc console i can enroll user cert.
    Plz help somebody. I crash my mind with problem. )))
    Thanks all.

     
    Hi,
    Please add the following groups to the Certificate Service DCOM Access group:
    ·         Domain Users group
    ·         Domain Controllers group
    ·         Domain Computers group
    In addition, make sure that the Certificate Service DCOM Access group has Local/Remote Activation permission as well.
    And then, update the DCOM security settings for the certificate service by running the following commands at a command prompt:
    certutil -setreg SetupStatus -SETUP_DCOM_SECURITY_UPDATED_FLAG
    net stop certsvc
    net start certsvc
    Note: Press Enter after each command.

  • Possible to select self-signed certificate for client validation when connecting to VPN with EAP-TLS

    In windows 8.2, I have a VPN connection configured with PPTP as the outer protocol and EAP : "Smart card or other certificate ..." as the inner protocol. Under properties, in the "When connecting" section I've selected "Use a certificate
    on this computer" and un-checked "Use simple certificate selection".
    My preference would be to use separate self-signed certificates for all clients rather than having a common root certificate that signed all of the individual client certificates. I've tried creating the self-signed certificate both with and without the
    client authentication EKU specified, and I've added the certificate to the trusted root certificate authority store on the client. But when I attempt to connect to the VPN I can not get the self signed certificate to appear on the "Choose a certificate"
    drop down.
    Are self signed certificates supported for this use in EAP-TLS? If it makes a difference, I'm working with makecert (not working with a certificate server).
    TIA,
    -Rick

    Hi Rick,
    Thank you for your patience.
    According to your description, would you please let me know what command you were using to make a self-signed certificate by tool makecert? I would like to try to reproduce this issue. Also based on my experience, please let me
    know if the certificate has private key associated and be present in the local machine store. Hence, please move the certificate from the trusted root certificate authority store to personal store.
    Best regards,
    Steven Song
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • "Problem with Trial - problem loading trial period for Adobe Photoshop CS3"

    Hello,
    I installed Photoshop CS3 Trial and whenever I run it and choose to begin my trial period I get the following error message:
    "Problem with Trial - problem loading trial period for Adobe Photoshop CS3".
    I tried uninstalling and reinstalling, and even ran the Adobe CS3Clean Script but nothing seems to help.
    I should note I never installed any earlier version of Photoshop on my system (I use a fresh copy of Windows XP with only a few programs installed).
    Any suggestions will be appreciated.
    Thanks,
    David

    i had the trial of photoshop on and the trial has run out my friend has given me a disk with adobe photoshop on and i cant do it beacause of the regestry code the photoshop puts in after the trial has ended to tell my pc that i cant have photoshop on my computer again :(:( now i have herd that you can remove the codes but it is quite hard well iam willing for this challenge and if anyone could help me i would reall welcome your help or if anybody has got the link to a tutorial to tell me hoe to do it i would aprecitae that to thank you all very much and post bak soon please

  • Problems with Signed jar

    I am having a problem with signed jar and deploy in html
    get this error on the page
    self signed
    /dist/testfx.html
    JavaFX application could not launch due to system configuration. See java.com/javafx for troubleshooting information.Unsigned jar works perfectly but has security and permission issues when using classes.
    This was working in beta 45

    Can you post an example project that demonstrates the problem? There were changes to the ant tasks and netbeans support around B45 that could cause problems depending on which version of the SDK and NetBeans you have. Similarly, if you wrote ant scripts prior to B44 and then use them with a later build you could have problems. And of course, if you're producing the Jar file and deployment artifacts without using the provided ant tasks (for example, using the normal ant jar task) you'll have problems.
    I've verified that this works as expected in the FX 2.0 GA release using ant from the command line, and with the NetBeans 7.1 beta release using the FX 2.0 GA release.

  • Problems with Photoshop cs4 for the Mac

    I am having all kinds of problems with Photoshop CS4 for the Mac.  When I boot the software it seems to work for a while then, I am unable to open upf a file in Photoshop.  I drag a photoshop file over the application icon, the whole screen flickers and nothing happens.  I am unable to quit Photoshop as the quit choice is grayed out and command-q will not make it quit. I have to force quit.  I can repeat this pattern over and over.  What is happening?  How do I solve this problem?
    --Kenoli

    Thanks for the reply.  I am using  Photoshop 11.0.1.  I am using the latest version of Snow Leopard.  I have found both Photoshop and Dreamweaver to be pretty buggy for several versions now.  My suspicions were that they were really engineered for Windows and never really fully implemented for the Mac.  Dreamweaver crashes or hangs on me three or four times a day if I us it all day and does various annoying things like refusing to respond to the delete key after I have used it for a while.  I have pretty much stopped using it to some degree for that reason and also because there is other software that does a lot of coding things I do much more directly and simply.  Also Dreamweaver always seems to struggle to quit when I tell it to quit (that is, it takes a long time and gets hung up at places before it quits) and once it does quit, I always get a message saying that it has unexpectedly quit (even when I have told it to quit).
    The problems with Photoshop  (starting with just taking a long time to load)  have escalated to the point I described today, which makes it almost unusable. I just reinstalled Snow Leopard to see if there was anything buggy in the system software.  I will report if problems go away.
    Regarding both the refusal to open image files and the grayed out quit command, made me think something like you, i.e. there was some dialogue box open somewhere.  However, I couldn't find anything and I don't use two monitors.
    So . . . Adobe just seems to be getting more expensive and more buggy.
    Incidentally, why is it still running in Rosetta rather than natively?  Adobe now has a real Intel processor to work with.
    --Kenoli

  • I frequently use Lightroom 3.6 for tethered capture on location. If I sign up for Adobe cloud and upgrade to Lightroom 5, do I have to be online all the time to use it? In other words, can I still use the program off-line?

    I frequently use Lightroom 3.6 for tethered capture on location. If I sign up for Adobe cloud and upgrade to Lightroom 5, do I have to be online all the time to use it? In other words, can I still use the program off-line?

    Yes.
    The only difference is the installation method and the ownership verification. The program still is installed on and runs from your local machine. You only have to hook up to the internet every 60-90 days to verify ownership.
    From the FAQ
    Do I need to be online to access my desktop apps?
    No, the desktop applications in Creative Cloud, such as Photoshop and Illustrator, are installed directly on your computer, so you don’t need an ongoing Internet connection to use them.
    An Internet connection is required the first time you install and license your apps, but you can use the apps in offline mode with a valid software license. The desktop apps will attempt to validate your software licenses every 30 days.
    Annual members can use the apps for up to 99 days in offline mode. Month-to-month members can use the software for up to 30 days in offline mode."

  • Problems with our copy of Adobe Acrobat 7 Professional.

    We have two problems with our copy of Adobe Acrobat proffesional which we have recently re installed back on the same PC following so we thought the relevant transfer activation instructions.
    The first is that when we first start the program with no file loaded Both Transfer Activation and Activate Acrobat are greyout out.   This in tiself is not a problem but it may have a bearing on our real problem.
    We have for a few years used Acrobat Proffesional successfully to sign released drawing files which have been 'printed' to a PDF file by a third party printer driver.   Recently though when we try to load any of this type of file the Acrobat menu stays greyed out and both Adobe Acrobat and the PDF file are listed in Windows task manager.  Acrobat is completely locked up and has to be exited via task manager.   If I load PDF files from other sources the abot symptoms accur only briefly then the program menus re activate and the PDF file disappears from task manager.  It is as thought our PDF drawing files are failing to complete loading.
    Does anyone know how I can find out if our copy of Adobe Acrobat Pro 7.0 is actually activated?
    Does anyone know what might have started to prevent out drawing files from loading.
    Thanks
    Chris

    Good point but this one does require activation.
    Our real issue is that if we load one of our own drawing filkes, even one previously edited or signed with no problems it now completely locks up Adobe acrobat and we cannot do anything at all in Acrobat.

  • Having some problems with security certificates

    Hello,
    In some pages, e.g. Twitter, and pages that load FB comments sections, I'm having problems with the certificates and the pages won't load. I don't get an option to add an exception either, therefore I cannot access pages.
    I have pasted the error details below. Here is some important info for you:
    Version: 9.0.1 <-- Upgrading is NOT an option, this is a corporate machine
    Connect via proxy: yes
    I doubt very much that this is an issue with the connection, as IE and Chrome are NOT having this issue on the same connection.
    Error I get:
    This Connection is Untrusted
    You have asked Firefox to connect securely to twitter.com, but we can't confirm that your connection is secure.
    Normally, when you try to connect securely, sites will present trusted identification to prove that you are going to the right place. However, this site's identity can't be verified.
    What Should I Do?
    If you usually connect to this site without problems, this error could mean that someone is
    trying to impersonate the site, and you shouldn't continue.
    Technical Details
    twitter.com uses an invalid security certificate.
    The certificate is not trusted because the issuer certificate is not trusted.
    (Error code: sec_error_untrusted_issuer)
    Can anyone shed some light? The usual troubleshooting I've come across hasn't helped me much.

    Off the cuff it smells of a man-in-the-middle situation to me. As far as I know, Twitter does have a valid certificate, signed by Verisign. That IE and Chrome have no problem with it, could just mean they do not check resp. do let you know.
    I'll have to pass here, because I would not know, how to turn this checking off in FX 9.0 - in any case I would think twice before doing it. The place to look would be Options > advanced > Encryption.
    Hope somebody else joins us:)
    PS: keeping you nailed down to Fx 9.0 version is unsafe - not just for you, but for your company as well.

  • Signed up for Adobe Story Free and now my Script is gone?

    I signed up for Adobe Story Free, gave a script a title and wrote a few pages to try it out.  Just went back in to play with it a little more and everything is gone.  The samples of work that were on the template and my work are all missing.  Was this a Beta testing page?  Even when I go to the deleted items, it says failed to establish connection.
    Any ideas/news/answers?

    You are missing two things.
    1. Syncing music is a one-way street: http://support.apple.com/kb/HT1209
    2. Backup information includes information such as mail settings, text messages, notes, call history, contact favorites, sound settings, widget settings, certain network settings, and other preferences including settings and data from third-party applications purchased from the App Store. http://support.apple.com/kb/HT1766

  • Generating Self Signed Certificate for iPlanet Directory Server for testing

    Hi Experts,
    I am unable to find how to generate self signed certificate for iPlanet Directory Server for testing purpose. Actually what i mean is i want to connect to the iPlanet LDAP Server with LDAPS:// rather than LDAP:// for Secured LDAP Authentication. For this purpose How to create a Dummy Certificate to enable iPlanet Directory Server SSL. I searched in google but no help. Please provide me the solution how to test it.
    Thanks in Advance,
    Kalyan

    Here's one I did earlier.
    Refers to Solaris 10
    SSL Security
    add a new certificate that lasts for ten years (120 months).
    stop the instance:
    dsadm stop <instance>
    Remove DS from smf control:
    dsadm disable-service <instance>
    Change Certificate Database Password:
    dsadm set-flags <instance> cert-pwd-prompt=on
         Choose the new certificate database password:
         Confirm the new certificate database password:
    Certificate database password successfully updated.
    Restart the instance from the dscc:
    DSCC -> start <instance>
    Now add a new Certificate which lasts for ten years (120 months; -v 120):
    `cd <instance_path>`
    `certutil -S -d . -P slapd- -s "CN=<FQDN_server_name>" �n testcert �v 120 -t T,, -x`
         Enter Password or Pin for "NSS Certificate DB":
    Stop the Instance.
    On the DSCC Security -> Certificates tab:
         select option to "Do not Prompt for Password"
    Restart the instance.
    On the Security -> General tab, select the new certificate to use for ssl encryption
    Restart the instance
    Stop the instance
    Put DS back into smf control:
    dsadm enable-service <instance>
    Check the smf:
    svcs -a | grep ds
    # svcs -a|grep ds
    disabled Aug_16 svc:/application/sun/ds:default
    online Aug_16 svc:/application/sun/ds:ds--var-opt-SUNWdsee-dscc6-dcc-ads
    online 17:04:28 svc:/application/sun/ds:ds--var-opt-SUNWdsee-dsins1

  • Problem with signing in to folio builder, indesign.

    I have created an app that I would like to publish, but I can not sign in via the folio builder. I have done this many times before, but today I only get the grey weel when I try to sign in. Im am stuck an can not publish my app. How can I get this to work?

    Hi Christophe
    Yes, I can log into the account on digitalpublishing.acrobat.com with out
    any problems.
    No, it does not work to delete the OOBE folder. I have tried that twice. I
    am rather sad about this. Don't know what to do
    2014-11-28 11:21 GMT+01:00 Christophe_Jossic <[email protected]>:
        Problem with signing in to folio builder, indesign.  created by
    Christophe_Jossic <https://forums.adobe.com/people/Christophe_Jossic> in *Digital
    Publishing Suite* - View the full discussion
    <https://forums.adobe.com/message/6968931#6968931>

Maybe you are looking for