Creative cloud error one please help

i'm having a problem, each time i try to install adobe creative cloud i get the same error half way through the download (error 1) i have tried more than several times, and i'm confused to why it won't work as i have previously owned adobe cloud on another device please advise me.

Error Code 1: "Failed to install" | Creative Cloud Desktop :
https://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html

Similar Messages

  • I keep getting the error "Download Error. Press Retry or try again or contact customer suppor.(0)" when clicking on 'Apps' in the Creative Cloud program. Please help!

    Hey all,
    I keep getting this error when trying to use Adobe Creative Cloud. I only downloaded it today and I keep getting this download error. I have tried a few of the other solutions found and none seem to work. Sorry if there is an obvious fix but other solutions haven't worked for me
    I also keep getting this error. "Unable to reach Adobe Servers. Please check your internet connectivity, firewall settings, and then try again."
    Although I have no firewall enabled so...
    Thanks for the help!

    I had this problem with acrobat downloading.  I shut down the computer, restarted and it worked. 

  • I am getting error 49 when tring to update Creative Cloud software. Please help!

    I am getting error 49 when tring to update Creative Cloud software.

    I'm getting this error too.  It appears on all products.  When I closedown and relaunch CC Desktop, all products show up to date.
    PS is showing 14.0 x64.
    I have tried a clean install of CC and also used the cleaner tool.  Nothing has resolved the issue.
    I am on Mac OSX 10.8.5.
    Neil

  • My creative cloud isnt working. please help :D

    hey people
    im having a people of struggle with adobe creative cloud, -_- i have uninstalled it then installed it again, but its refusing to work ): its stressing me out.
    please help,
    much appreciated

    Hi there,
    Welcome to the Adobe Forums.
    Please follow the steps below:
    Delete the OPM.db file:
    Close the Creative Cloud application.
    Navigate to the OOBE folder.
    Windows: [System drive]:\Users\[user name]\AppData\Local\Adobe\OOBE
    Delete the opm.db file.
    Launch Creative Cloud.
    If you can't access that folder, please follow the instructions for the hidden folders below:
    Show hidden files, folders, filename extensions | Windows XP, Vista, Windows 7
    Thank you.
    Arnaud.

  • My photoshop download keeps crashing through the Creative Cloud downloder. Please help?

    What can be done to solve this madenss?

    Yes. You can change the Language you want installed using the Adobe Application Manager (AAM). You will need to uninstall the language you currently have before switching. Click on your name in the top left of AAM to access the Preferences menu which has the Language setting.

  • I bought CS6 creative suite. As of now i need to work each application in separate separate system. Can any one please help me how to solve this problem.

    I bought CS6 creative suite. As of now i need to work each application in separate separate system. Can any one please help me how to solve this problem.
    I saw the below quote on Adobe forum
    "You may install software on up to two computers. These two computers can be Windows, Mac OS, or one each."
    If i install each application in single single system the system count is more than two. In this case, are we have any license issue? Please advice how the problem will solve?
    If possible please send the advise to my mail id: <Removed by Moderator>
    Thanks
    Uvaraj S

    I already answered that.  If you purchased a Suite then you can only install and activate it on two machines.  Even if you only insdtall one of the applications of that suite, it counts as one activation of the suite.  You cannot take the six or seven different applications that might be in a suite and install and activate them in six or seven different machines... only two machines.
    If your scenario will allow for it, one thing you can do is install the programs on all the different machines and only activate two of the machines at any given time.  If you need to activate a program on a third machine then you need to deactivate on one of the currently activate machines first so that you have an open activation to use again.  I do not remember if there is a limit to the total number of activations you can process for the life of the software.

  • Client server code with errors could some one please help me!!!

    I am using a random access file to design the two interfaces for my client and my server is this the right thing to do? Oh could some one give me some example code of client server interfaces.
    I got an error in the code for the interfaces and I don't know what it is could some one please help me!!
    Heres the error in the code: This is for RegisterCustomer
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    class RegisterCustomer extends JPanel implements ActionListener
    // Button for registering a customer
    private JButton jbtRegister;
    // Customer information panel
    private CustomerPanel customerPanel; (The error is on this line and it says Field type customer panel is missing)
    // Random access file
    private RandomAccessFile raf;
    Second error: Its in the ViewCustomer:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    // View customer panel
    class ViewCustomer extends JPanel implements ActionListener
    // Buttons for viewing customer information
    private JButton jbtFirst, jbtNext, jbtPrevious, jbtLast;
    // Random access file
    private RandomAccessFile raf = null;
    // Current customer record
    private Customer customer = new Customer();
    // Create a customer panel
    private CustomerPanel customerPanel = new customerPanel(); (its on this line and it says field type CustomerPanel is missing)
    // File pointer in the random access file
    private long lastPos;
    private long currentPos;
    Heres the code for the customerPanel:
    // Customer Panel.java: Panel for displaying Customer information
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    public class customerPanel extends JPanel
         JTextField jtfRegistrationnumber = new JTextField(30);
         JTextField jtfSeatingcapacity = new JTextField(20);
    JTextField jtfStartdateofhire = new JTextField(20);
    JTextField jtfDurationofhire = new JTextField(10);
    JTextField jtfManufacture = new JTextField(20);
    JTextField jtfModel = new JTextField(15);
         JTextField jtfEnginesize = new JTextField(15);
    JTextField jtfCharge = new JTextField(20);
    JTextField jtfMileage = new JTextField(10);
    // Constuct a customer panel
    public customerPanel()
    // Set the panel with line border
    setBorder(new BevelBorder(BevelBorder.RAISED));
    // Panel p1 for holding all the labels
    JPanel p1 = new JPanel();
    p1.setLayout(new GridLayout(3, 1));
    p1.add(new JLabel("Registration number"));
    p1.add(new JLabel("Seating capacity"));
    p1.add(new JLabel("Start date of hire"));
    p1.add(new JLabel("Duration of hire"));
    p1.add(new JLabel("Manufacture"));
    p1.add(new JLabel("Model"));
    p1.add(new JLabel("Engine size"));
    p1.add(new JLabel("Charge"));
    p1.add(new JLabel("Mileage"));
    // Panel jpRegistration number for registration number
    JPanel jpRegistrationnumber = new JPanel();
    jpRegistrationnumber.setLayout(new BorderLayout());
    jpRegistrationnumber.add(new JLabel("Registration number"), BorderLayout.WEST);
    jpRegistrationnumber.add(jtfRegistrationnumber, BorderLayout.CENTER);
    // Panel jpSeating capacity for holding Seating capacity
    JPanel jpSeatingcapacity = new JPanel();
    jpSeatingcapacity.setLayout(new BorderLayout());
    jpSeatingcapacity.add(new JLabel("Seating capacity"), BorderLayout.WEST);
    jpSeatingcapacity.add(jtfSeatingcapacity, BorderLayout.CENTER);
         // Panel jpStart date of hire for holding start date of hire
    JPanel jpStartdateofhire = new JPanel();
    jpStartdateofhire.setLayout(new BorderLayout());
    jpStartdateofhire.add(new JLabel("Start date of hire"), BorderLayout.WEST);
    jpStartdateofhire.add(jtfStartdateofhire, BorderLayout.CENTER);
    // Panel jpDuration of hire for holding Duration of hire
    JPanel jpDurationofhire = new JPanel();
    jpDurationofhire.setLayout(new BorderLayout());
    jpDurationofhire.add(new JLabel("Duration of hire"), BorderLayout.WEST);
    jpDurationofhire.add(jtfDurationofhire, BorderLayout.CENTER);
    // Panel p2 for holding jpRegistration number and jpSeating capacity and start date of hire and duration of hire
    JPanel p2 = new JPanel();
    p2.setLayout(new BorderLayout());
    p2.add(jpRegistrationnumber, BorderLayout.WEST);
    p2.add(jpSeatingcapacity, BorderLayout.CENTER);
    p2.add(jpStartdateofhire, BorderLayout.CENTER);
    p2.add(jpDurationofhire, BorderLayout.CENTER);
    // Panel p3 for holding jtfManufacture and p2
    JPanel p3 = new JPanel();
    p3.setLayout(new BorderLayout());
    p3.add(jtfManufacture, BorderLayout.CENTER);
    p3.add(p2, BorderLayout.EAST);
    // Panel p4 for holding jtfModel, jtfEngine size, charge and mileage and p3
    JPanel p4 = new JPanel();
    p4.setLayout(new GridLayout(3, 1));
    p4.add(jtfModel);
    p4.add(jtfEnginesize);
    p4.add(jtfCharge);
    p4.add(jtfMileage);
    p4.add(p3);
    // Place p1 and p4 into customerPanel
    setLayout(new BorderLayout());
    add(p1, BorderLayout.WEST);
    add(p4, BorderLayout.CENTER);
    // Get customer information from the text fields
    public Customer getCustomer()
    return new Customer(jtfRegistrationnumber.getText().trim(),
                             jtfSeatingcapacity.getText().trim(),
                                  jtfStartdateofhire.getText().trim(),
                             jtfDurationofhire.getText().trim(),
                             jtfManufacture.getText().trim(),
                             jtfModel.getText().trim(),
                                  jtfEnginesize.getText().trim(),
                             jtfCharge.getText().trim(),
                             jtfMileage.getText().trim());
    // Set customer information on the text fields
    public void setCustomer(Customer s)
    jtfRegistrationnumber.setText(s.getRegistrationnumber());
    jtfSeatingcapacity.setText(s.getSeatingcapacity());
    jtfStartdateofhire.setText(s.getStartdateofhire());
    jtfDurationofhire.setText(s.getDurationofhire());
    jtfManufacture.setText(s.getManufacture());
    jtfModel.setText(s.getModel());
    jtfEnginesize.setText(s.getEnginesize());
    jtfCharge.setText(s.getCharge());
    jtfMileage.setText(s.getMileage());
    Could someone please help me and tell me what these two errors mean and how I could get rid of them

    Can some one take a look at this code and tell me how to get all my jlabels to line up alone side their jtf.
    Because it looks like this the picture in the attached file and this is the code for it:
    public customerPanel()
    // Set the panel with line border
    setBorder(new BevelBorder(BevelBorder.RAISED));
    // Panel p1 for holding labels Name, Street, and City
    JPanel p1 = new JPanel();
    p1.setLayout(new GridLayout(5, 1));
    p1.add(new JLabel("Registration Number:"));
    p1.add(new JLabel("Seating Capacity:"));
    p1.add(new JLabel("Engine Size:"));
    p1.add(new JLabel("Start date of hire"));
    p1.add(new JLabel("Duration of hire"));
    JPanel p2 = new JPanel();
    p2.setLayout(new GridLayout(5, 1));
    p2.add(jtfRegistrationnumber);
    p2.add(jtfSeatingcapacity);
    p2.add(jtfEnginesize);
    p2.add(jtfStartdateofhire);
    p2.add(jtfDurationofhire);
    //JPanel p3 = new JPanel();
    //p3.add(p1, BorderLayout.WEST);
    //p3.add(p2, BorderLayout.NORTH);
    JPanel p4 = new JPanel();
    p4.setLayout(new GridLayout(4, 1));
    p4.add(new JLabel("Manufacture:"));
    p4.add(new JLabel("Model:"));
    p4.add(new JLabel("Mileage:"));
    p4.add(new JLabel("Charge:"));
    JPanel p5 = new JPanel();
    p5.setLayout(new GridLayout(4, 1));
    p5.add(jtfManufacture);
    p5.add(jtfModel);
    p5.add(jtfMileage);
    p5.add(jtfCharge);
    // JPanel p6 = new JPanel();
    // p6.setLayout(new BorderLayout());
    // p6.add(p4, BorderLayout.SOUTH);
    // p6.add(p5, BorderLayout.EAST);
    // Place p1 and p4 into CustomerPanel
    setLayout(new BorderLayout());
    add(p1, BorderLayout.WEST);
    add(p2, BorderLayout.NORTH);
    add(p4, BorderLayout.SOUTH);
    add(p5, BorderLayout.EAST);
    So could someone please help me and correct my code so that each text lable is lined up next to its jtf java text field.

  • How can i get some help to cancel my single app month to month and/or upgrade to full creative cloud membership? please don't tell me to follow the guidelines because i've tried several times but the options to 'switch plan' or cancel plan' are not availa

    how can i get some help to cancel my single app month to month and/or upgrade to full creative cloud membership? please don't tell me to follow the guidelines because i've tried several times but the options to 'switch plan' or cancel plan' are not available on my screen

    Keensy I have requested a member of our support team contact you directly via telephone.  Once I was able to review the correct account it appears our support team has tried multiple times to contact you.  I would recommend checking your SPAM filtering in case you need to receive additional messages from our support team.
    I did request that you be contacted via telephone. I am sorry for all of the difficulties which you have faced.
    For future viewers of this discussion when contacting our support team at Contact Customer Care it is imperative that you be logged in under the account tied to your membership/subscription.  While there is cancelation options available you will have an increased chance of being offered an opportunity to contact our support team if your account entitlement can be verified.  For this to be done you will need to be signed into the same account as your membership/subscription/registered software title.

  • Installation error - Creative Cloud error code 50

    I have purchased InDesign and am unable to install because I keep getting errors during installation. One of the errors is Creative Cloud error code 50. How can I install InDesign without the Creative Cloud? How can I install InDesign?

    Hi candyheart83,
    Please follow Error "Failed to Install" Creative Cloud Desktop application to troubleshoot the issue.
    You can also go through this thread Re: Error code 50 .
    Thanks,
    Saurabh Rai

  • Having trouble updating Creative Cloud (Error Code: 85)

    Having trouble updating Creative Cloud (Error Code: 85)
    Installation keeps stopping at 43%

    Please read https://forums.adobe.com/thread/1499014
    -try some steps such as changing browsers and turning off your firewall
    -also flush your browser cache so you are starting with a fresh browser
    http://myleniumerrors.com/installation-and-licensing-problems/creative-cloud-error-codes-w ip/
    http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Updating Creative Cloud error 2

    updating CreativeCloud error: Updating Creative Cloud Desktop failed. ( Error code : 2 ) . Someone can help me ?

    For error code 50 :
    Open task manager and Quit all Adobe processes, including Creative Cloud and Coresync.
    Then navigate to C:\Program Files (x86)\Common Files\Adobe
    Delete Adobe application manager and OOBE folders
    Navigate to C:\Program Files (x86)\Adobe
    Delete Adobe Creative Cloud folder ( if you are getting any error try to rename it to adobe creative cloud old
    Then try to reinstall Creative Cloud App
    Free Creative Cloud | Download Adobe Creative Cloud free trial
    please see Error "Failed to Install" Creative Cloud Desktop application - http://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html for information on how to resolve your current error.
    Refer to: https://forums.adobe.com/message/6913288
    Regards
    Rajshree

  • I want to update to LION,on my Macbook Pro duo core, (october 2006) because Adobe CC needs at least that. I know my computer is old, but works perfect to me and I do not want to stay in Adobe CS6 since I have access to Adobe Cloud CC. Please help.

    I want to update to LION,on my Macbook Pro CORE 2 DUO, (october 2006) because Adobe CC needs at least that. I know my computer is old, but works perfect to me and I do not want to stay in Adobe CS6 since I have access to Adobe Cloud CC. Please help.
    I probably dont want to go to Mountain Lion either because I've heard that it will slow down my computer, So, Lion 10.7 will be the perfect OS X for me.
    I have ne newest release of Snow Leopard installed and works great.
    Thank you ALL for your help.

    you will be ok updating to the new software but there will be some trade off. i have 3 macbooks 2006 that are all running the latest versions.
    some of the trade off are
    1-2 less of battery life
    slow wake ups from sleep
    slower start up time about 30-40 seconds longer then what you have now
    the operating system will use high % of your processer while idealing
    these are not the things you want to hear about a new os compared to the old one but this is how it is even with a new macbook pro. but it's not the end of the world. just make sure you have at least more then 2GB of ram and have a good harddrive and you will be ok.

  • TS3221 my iphone 4s is not connecting with itunes and giving me a message of unknow error 0xE8000012 Please help me out

    my iphone 4s is not connecting with itunes and giving me a message of unknow error 0xE8000012 Please help me out

    You've managed to permanently damage the phone. As gdgmacguy suggests, buy a new one. Preferably from a legitimate source.
    You may also want to keep in mind that it is illegal to use the Gevey SIM in pretty much every country on the planet. It may still be legal on the continent of antarctica, but that's only because penguins don't use cell phones as a rule.

  • After i updated my iphone 4s from 8.1.2 to 8.1.3 problem occurred.i cant restore and update my phone?saying that iphone could not be restored,an unknown error ocuurred.please help me?

    After i updated my iphone 4s from 8.1.2 to 8.1.3 problem occurred.i cant restore and update my phone?saying that iphone could not be restored,an unknown error ocuurred.please help me?

    Thanks for the update and clarification. In researching the issue it seems that the 2003 error code may have something to do with the USB connection. I would use this section of one of the above articles:
    Get help with iOS update and restore errors
    If the USB connection between your device and computer is interrupted, you might not be able to update or restore.
    To narrow down the issue, you can try different equipment:
    Use the USB cable that came with your device, or a different Apple USB cable. 
    Plug your cable into a different USB port directly on your computer. Don't plug it into your keyboard.
    Try a different computer.
    Solve other issues with the USB connection, then with your security software.
    If you still see the error message, check for hardware issues by following the next section.
    Check for hardware issues
    Related errors: 1, 3, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    These errors mean that your device or computer might have a hardware issue that stops the update or restore from completing.
    Check that your security software and settings aren't blocking your device from communicating with the Apple update server.
    Then try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    Make sure that your security software and settings are allowing communication between your device and update servers.
    If you still see the error message when you update or restore, contact Apple support.

  • Does anyone know where I can get a download for Creative Suite 3? Please Help!

    I have been
    asking everywhere and so far haven't found a download site for Creative Suite 3.  My computer crashed and I lost all of my files.  When I went to try to reinstall my program I found everything to do it except the install disc (I have the code and serial number and the two other discs).  I have called customer service and they were absolutely no help at all... the only thing they could do was try to sell me CS5... there is no way I can aford to buy a new program.  I looking for someone who is willing to share a download or their install disc.  Can some one please help me?

    You cannot as there is no legal way to purchase a downloadable version of Logic Pro 9 any longer. Apple no longer sell it...
    However you could purchase a used copy of the FULL boxed version (Make sure it is not the more common upgrade version) of Logic Studio 2.0 which included Logic Pro 9 via ebay or somewhere similar...

Maybe you are looking for