Installation Problem (Need Help)

I inserted my Adobe Premiere Pro C6 CD-Rom into my computer but it says this message:
"Some items for the following products could not be installed successfully: (Premiere)
The error summary file may help you identify the issue. If the problem persist, please contact Customer Support for further assistance"
So of course I clicked on error summary and that lead me to see:
Exit Code: 6 Please see specific errors below for troubleshooting. For example, ERROR: DS003 ... -------------------------------------- Summary -------------------------------------- - 1 fatal error(s), 0 error(s) ----------- Payload: Adobe Premiere Pro CS6 6.0.0. ----------- FATAL: DS003: Installer package might be corrupt. Re-download the installer and try again. (Cannot extract 'D:\Adobe CS6\payloads\AdobePremierePro6.0AllTrial\Assets1_1.zip' to 'C:\Program Files (x86)\Common Files\Adobe\Installers\adobeTemp\{42CED1DA-1C36-45D2-88C0-C32DB6B82B49}'. Error: Error 23 Data error (cyclic redundancy check).) -------------------------------------------------------------------------------------
So can someone tell me what exactly to do about this and how to do it. When it says "redownload installer" is it just the Adobe Program completely or what?
Anyone who can help me, it would be greatly appreciated.

Code 6 & Code 7 http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html
or
Below is about Cloud problems, but a CHAT session may help
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

Similar Messages

  • Java JDK Installation Problem - Need Help!

    Below is my program Access.java which resides in c:\java. It generates a "NoSuchMethodError" when I run it on my Windows 2000 computer at work. When my friend here at work runs the SAME program on his Windows 2000 computer, it runs fine. I have No idea why! I suspect it's a classpath problem, but I use the same classpath on my Windows 98 computer at home w/o a problem.
    For windows 2000, I set my path statement by going into the Control Panel ->System->Advanced Tab and adding a user variable named path.
    To set my classpath, I use sysedit. Anyway, here's what my path and classpath statements look like in my c:\autoexec.bat
    path=c:\windows;c:\windows\command;c:\java
    path=c:\jdk1.3.1\jre\bin;c:\jdk1.3.1\bin;%path%
    set classpath = .;%classpath%;c:\jdk1.3.1\jre\lib;c:\java\;
    Finally, here's my c:\java\Access.java program that blows up (only on MY Windows 2000 machine)
    //Access.java
    package com.gfarms.geometry;
    class Other
    public void fnc(int b)
    System.out.println("integer received = " + b);
    public class Access
    public static void main(String[] args)
    Other a = new Other();
    a.fnc(48);
    Any help would be deeply appreciated!

    Try this:
    create a new directory called c:\java\com\gfarms\geometry and move Access.java to it. Delete all class files.
    compile from c:\java:
    c:\java> javac com/gfarms/geometry/Access.java
    run it:
    c:\java> java com.gfarms.geometry.Access

  • Zen Vision:M problem, NEED HELP!

    My zen vision:m is starting to run slowly. It started right after my player froze and i reset it.Now its really slow and barely even switches screens sometimes.Right now its just a black screen with the keypad lit up.Whats wrong with it'sI NEED HELP!

    johnnnyp wrote:
    hi, i have a problem with my creative vision m. i wanted to watch a movie and it froze. i tried to shut it down but it wouldnt respond, and now is frozen. please help me if you can!
    You know its kinda rude to derail XBenzinoFla thread with your own problems, make your own thread next time.
    But to the both of you especially XBenzinoFla, try putting your ZVM in rescue mode and run scan disk to see if it hel
    ps.

  • Zen Micro problem need help

    Today i was listening to music and my zen micro just froze while playing and no buttons could be pressed and the lock button wasnt on. So i took the battery out and rebooted the player but it froze at the creative screen. I went home and i went to recovery mode and tried to reload the firmware but it said erasing firmware for more than 2 hours. So then i tried a format but it said formating for the same amount of time. I need help please. Also, recently i've had problems witht the headphone jack. When ever i would stick it in it would sound distorted and i would have to move it around until i got it to a certain spot to hear it good again. If anyone else has this problem please tell me. One more thing i had returned my other micro zen in for hard dri've probems and this was my new one do u think if i have to return in (hopefully not) that they would accept it.

    If the functions in Rescue Mode aren't working properly then you need to contact Creative Support.

  • Still stuck with the same old producer consumer weight problem need help

    Hello All,
    This is the problem I am stuck with right now.
    I have two array lists one producer array list and one consumer array list denoted by a and b
    P1 P2 P3 P4 P5
    5 6 7 8 9
    C1 C2 C3 C4 C5
    2 3 4 5 6
    Now we find all those producer consumer pairs which satisfy the criteria Pi>=Ci
    We have the following sets
    (5,2)(6,2)(7,2),(8,2),(9,2)
    (5,3)(6,3)(7,3),(8,3),(9,3)
    (5,4)(6,4)(7,4),(8,4),(9,4)
    (5,5)(6,5)(7,5),(8,5),(9,5)
    (6,6)(7,6)(8,6),(9,6)
    Let us done each of them with Si
    so we have S1,S2,S3,S4,S5
    we assign a third parameter called weight to each element in Si which has satisfied the condition Pi>=Ci;
    so we we will have
    (5,2,ai),(6,2,bi),(7,2,ci)....etc for S1
    similarly for S2 and so on.
    We need to find in each set Si the the pair which has the smallest weight.
    if we have (5,2,3) and (6,2,4) then 5,2,3 should be chosen.We should make sure that there is only one pair in every set which is finally chosen on the basis of weight.
    Suppose we get a pair (5,2,3) in S1 and (5,2,3) in S2 we should see that (5,2,3) is not used to compare to compare with any other elements in the same set S2,
    Finally we should arrive at the best element pair in each set.They should be non repeating in other sets.
    Given a problem
    P0 P1 P2 P3 P4
    9 5 2 2 8
    6 5 4 5 3
    C0 C1 C2 C3 C4
    we have So as (P0,C0) and (P4,C0)
    assuming that the one with the smaller index has lesser weight PO is selected.In the program I have used random weights.from set S1 we select the pair PO,CO
    S1 =(P0,C1),(P1,C1) and (P4,C1)
    since P0 and P4 are already used in previous set we dont use them for checking in S1 so we have (P1,C1) as best.
    S2=(P0,C2),(P1,C2) and (P4,C2) so we dont use P0,C2 and P1 and C2 because PO and P1 are already used in S1.
    So we choose P4,C2
    in S3 and S4 ae have (P0,C3),(P1,C3),(P4,C3) so we dont choose anything
    and same in S4 also.
    So answer is
    (P0,C0),(P1,C1) and (P4,C2).
    My program is trying to assign weights and I am trying to print the weights along with the sets.It doesnt work fine.I need help to write this program to do this.
    Thanks.
    Regards.
    NP
    What I have tried till now.
    I have one more question could you help me with this.
    I have an array list of this form.
    package mypackage1;
    import java.util.*;
    public class DD
    private  int P;
    private  int C;
    private int weight;
    public void set_p(int P1)
    P=P1;
    public void set_c(int C1)
    C=C1;
    public void set_weight(int W1)
    weight=W1;
    public int get_p()
    return P;
    public int get_c()
    return C;
    public int get_x()
    return weight;
    public static void main(String args[])
    ArrayList a=new ArrayList();
    ArrayList min_weights_int=new ArrayList();
    ArrayList rows=new ArrayList();
    ArrayList temp=new ArrayList();
    Hashtable h=new Hashtable();
    String v;
    int o=0;
    DD[] d=new DD[5];
    for(int i=0;i<4;i++)
    d=new DD();
    for(int i=0;i<4;i++)
    d[i].set_p(((int)(StrictMath.random()*10 + 1)));
    d[i].set_c((int)(StrictMath.random()*10 + 1));
    d[i].set_weight(0);
    System.out.println("Producers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_p());
    System.out.println("Consumers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_c());
    System.out.println("Weights");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_x());
    for(int i=0;i<4;i++ )
    int bi =d[i].get_c();
    ArrayList row=new ArrayList();
    for(int j=0;j<4;j++)
    if( d[j].get_p() >=bi)
    d[j].set_weight((int)(StrictMath.random()*10 + 1));
    row.add("(" + bi + "," + d[j].get_p() + "," +d[j].get_x() + ")");
    else
    d[j].set_weight(0);
    row.add("null");
    rows.add(row);
    System.out.println(rows);
    int f=0;
    for(Iterator p=rows.iterator();p.hasNext();)
    temp=(ArrayList)p.next();
    String S="S" +f;
    h.put(S,temp);
    String tt=new String();
    for(int j=0;j<4;j++)
    if(temp.get(j).toString() !="null")
    // System.out.println("In if loop");
    //System.out.println(temp.get(j).toString());
    String l=temp.get(j).toString();
    System.out.println(l);
    //System.out.println("Comma matches" + l.lastIndexOf(","));
    //System.out.println(min_weights);
    f++;
    for(Enumeration e=h.keys();e.hasMoreElements();)
    //System.out.println("I am here");
    int ii=0;
    int smallest=0;
    String key=(String)e.nextElement();
    System.out.println("key=" + key);
    temp=(ArrayList)h.get(key);
    System.out.println("Array List" + temp);
    for( int j=0;j<4;j++)
    String l=(temp.get(j).toString());
    if(l!="null")
    System.out.println("l=" +l);
    [\code]

    In your example you selected the pair with the greatest
    distance from the first set, and the pair with the least
    distance from the second. I don't see how the distance
    function was used.
    Also it's not clear to me that there is always a solution,
    and, if there is, whether consistently choosing the
    furthest or the closest pairs will always work.
    The most obvious approach is to systematically try
    all possibilities until the answer is reached, or there
    are no possibilities left. This means backtracking whenever
    a point is reached where you cannot continue. In this case
    backtrack one step and try another possibility at this
    step. After all possible choices of the previous step,
    backtrack one more step and so on.
    This seems rather involved, and it probably is.
    Interestingly, if you know Prolog, it is ridiculously
    easy because Prolog does all the backtracking for you.
    In Java, you can implement the algorithm in much the same
    way as Prolog implementations do it--keep a list of all the
    choice points and work through them until success or there
    are none left.
    If you do know Prolog, you could generate lots of random
    problems and see if there is always a solution.

  • Bought yearly subscription for Tech suite, unable to down load and installl/activate -need help-Vanita

    Hi there,
    I have bought yearly subscription for Tech suite which expires in May 2015, however I am unable to download or  install/activate it. I am paying monthly however cant use it!
    need help- Is there an email or phone number I can reach ---
    Thanks
    -Vanita

    BobLevine wrote:
    [....] If you find something out, please do come back and update us.
    Thanks for your willingness to help, but I got some great news!!!
    I finally managed to find the cause for that deactivation problem. It's called the "Update Root Certificates" component, which somehow was unchecked on my machine. Although I had previously installed the Adobe HTTPS (SSL) certificate for secure connections between my computer and Adobe servers, used while signing in on my account, each time I had to click YES to confirm manually that this certificate was valid and safe.
    Now, while deactivating from an application, such confirmation is not displayed and therefore the application considers a certificate (and thus connection as well) as invalid or unsafe. The result is: "Internet Not Found... Unable to Connect..." message.
    Here's what I did to fix it:
    1. clicked Start, and then pointed to Settings and then clicked Control Panel
    2. double-clicked Add or Remove Programs
    3. clicked Add/Remove Windows Components (on the left)
    4. scrolled down the list of components to Update Root Certificates, and checked the check box for that component
    5. clicked Next, and followed the instructions to complete the Windows Components Wizard.
    After turning that on, the deactivation was almost like a blink of an eye.
    So if anyone has a similar problem, make sure you have that system component turned on.
    Matt

  • Ipod problem NEED HELP ASAP

    Hello guys,my ipod touch has battery problems and internal speaker are not working and will apple replace me a new one,i even have 1 year warranty and i want a new ipod touch white instead of black<<<plz plz plz reply ASAP plz really need HELP!THANK YOU

    If you iPod is defective, in warranty and not abused Apple will replace it with a refurbished one.  They may or may not replace it with the white one.  You will have to ask.
    Other users have asked the same question but I hav never heard them come back with whether or not they go the color changed.

  • Urgent Problem, need help asap.

    Hello everyone,
    I'm sorry for the alarmist title, but I need help and I need it badly. Just last night, my macbook froze with nothing working. The mouse froze, the interrupt keys didn't work, nothing. I shut down the laptop, and tried to restart. I noticed a clicking sound coming from the lower left hand corner of the macbook. I'm assuming this is the hard drive.
    What happens is that there will be two clicks happening in a rythmic fashion, and after 15 second of booting up, a folder will appear with a question mark on the screen. The only thing I can do is power it down. Can someone please describe what is happening and make suggestions?
    The kicker is that I'm a college student studying in Denmark for the semester. The laptop is my only lifeline to back home. Please, any help is greatly appreciated.
    Matt

    You may have a disk failure or simply corrupted files. If you have a bootable backup that is working, then you can boot from it, erase your hard drive, then restore your backup. If not then do this:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    If the drive is OK then you can reinstall OS X:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Another Infinite Login Loop Problem - need help badly

    Hello. I need help.
    When I start up my iMac (24 inch last generation model) I can't log into the OS. When I enter my password I see the default OS wallpaper (nothing else) then it kicks me to a blue screen then right back to the login. Same thing over and over. I've already ran disk utility off of the install CD to repair permissions, etc... but no luck. This even happens when I enter into safe mode. I'm running the latest version of the OS.
    Can anyone help me?

    Restore the bootable backup/clone or Time Machine backup. Without one, you have a difficult situation. First thing to try is boot with your install disc, run Disk Utility, and repair the disk.

  • Ipod nano Problems need help fast!!!!!!

    I got my nano in october everything was working fine.Until 2 weeks ago my ipod wasnt getting reconized by itunes.Im really getting frustrated and i need help.

    Welcome to Apple Discussions!
    Read through this...
    http://docs.info.apple.com/article.html?artnum=61711
    btabz

  • Strange iTunes Installer Problem, Need Serious Help

    I just recently had no choice but to do a destructive recovery of my pc. I am now re-downloading all of my old software and I got to iTunes. I can download the installer just fine. But when I try to run the installer, after opening it and clicking run, I get the hour glass for about 40 seconds, then I get "iTunes Installer has encountered a problem and needs to close. We are sorry for the inconvenience." iTunes is a necessity for me, so can someone please help me?

    But when I try to run the installer, after opening it and clicking run, I get the hour glass for about 40 seconds, then I get "iTunes Installer has encountered a problem and needs to close. We are sorry for the inconvenience."
    Yes, that's quite a rare one conor. It seems to be associated with "silent" installer failures, and the "invalid signature" and "unknown publisher" error messages. In those cases, most often the installers seem to have been getting damaged during the download to the PC.
    Checking on simpler possibilities first. Have you been downloading the installer from the Apple website?
    http://www.apple.com/itunes/download/
    If so, does it make any difference if you do the download with (say) Firefox rather than IE (or vice versa)?

  • EMU 1212m installation problems! Help needed!

    Hello everyone. Hopefully someone can help me out, getting my 1212m back to working.
    A month ago, I bought a new computer and I put a EMU 1212m into it. It worked fine, until some other audio devices had bad drivers and made windows crash so many times, I decided to format my hard disk and install XP over again. Well, that worked out fine, computer is running very smoothly but I cant install my 1212m anymore. Windows does find new hardware, which it names "multimedia-audiocontroller, pci slot xx, etc" in the device manager. When I start the EMU setup from the original CD, it says "setup has not detected any supported hardware on your computer" and it closes down right away.
    I already tried this:
    - multiple installation CD's
    - multiple EMU drivers (internet, etc)
    - chancing PCI slots
    - disabling on-board sound via Bios
    - cleaning up registery settings from earlier installation attemps.
    - manually select the drivers on the installation CD. It installes the drivers and then Windows says: this device will not start.
    I can try whatever I want, but the message keeps on showing up everytime I start a setup. I don't know which actions to take next, so I desperately need some advice here.
    any help will be much appreciated!
    thanks,
    Hugo

    I just bought a 1212M and have had similar problems. I assumed the website drivers would be newer than those on the accompanying CD as is the case with most products -- WRONG! I got the same symptoms you describe with the internet drivers, only when I used the CD did it work -- and to my amazement, the CD drivers seems to be newer than the internet downloads (excluding the 2.0 beta drivers of course).
    Another complication I had was that I left my perfectly working X-Fi in the computer while installing the 1212M .... the drivers seem to confuse the two cards, which doesn't help. In fairness, the Emu documentation does warn about this, however I eventually got both to work together. If you have a second soundcard in the same computer, even one built into the motherboard, disable it and see if that helps. The Creative (SoundBlaster) drivers are notoriously hard to uninstall cleanly, so if necessary follow Martin Walker's excellent advice over at Sound On Sound (http://www.soundonsound.com/sos/mar0...pcmusician.htm).

  • Installation problem, please help, urgent needs,

    I have install the FCP 7 into my MBP, and updated, but in the "add behavior" tap i don't have those new behavior like "text-basic" "text-continuous" "text-energetic" etc..... how can i add it back?
    urgent needs, please help

    fixed

  • Ibook won't boot up on own or from OS installation CD (need help in Yemen)

    Hello,
    I'm currently in Yemen for a few months and my ibook seems to have died on me. The country isn't exactly brimming with Apple support technicians so any advice or suggestions people could give me would be really appreciated.
    I have an older ibook (dual USB G3 which I bought in June 2001). It has the occasional application or OS freezes, but typically restarting solves these. Yesterday, however, when I tried restarting the computer wouldn't boot up - it would get to the gray start up screen with the apple and spinning wheel and would just sit there with no progress even after an hour. I removed the airport card and extra RAM, but no luck.
    I ran the Apple Hardware Check CD, but everything came up clean. I also ran Norton Utilities Disk Warrier and it found Major Errors in some of the directories (I have the list at home if that would help) all of which it said it fixed. However, it wasn't able to complete checking the HD, at one point it tried to find some files and never was able to get any further in the check - it would just sit for hours with no progress. When I tried rebooting the computer on its own it got no further than a gray screen.
    At this point I decided it might be easiest just to reinstall the opperating system. I put in the installation disks (OS 10.2.4) and tried booting up from the CD - the boot up was very slow and ultimately (maybe after 10 minutes) instead of a gray screen with an Apple logo it came up with the "forbidden symbol" (i.e. the circle with the slash through it that you see on no smoking signs).
    At this point I'm not quite sure what to since it isn't booting up from the installation CD - are there any other tricks I could try or reason why it won't boot up from the CD? I also have a copy of 10.4 installation CD but I'm hesitant to install it just because the ibook is such an old computer and it would require the extra RAM to run it (currently I have 300 something of RAM in the computer). I also have a 20 GB external harddrive with me if there's anyway I could boot up with it.
    Three years ago the laptop had major problems and basically died, but went into Apple and seemed to have been fixed and had the logic board replaced. After this point I got a new laptop (which I'm hiting myself for not bringing with me at this point) and haven't really used this computer frequently - maybe 5 to 10 times in the last 3 years, it really is a "spare" laptop. I used it for about a week before coming and it seemed to be working fine.
    At this point I'm really open to any suggestions on how to fix and jury rig it to work for the next 3 months (really I just need to be able to use Word and iPhoto) or so as I won't be using it once I get back to the States. Any suggestions or help would be greatly appreciate. Thank you very much!!

    Hi, and welcome to Apple Discussions.
    Which utility did you use on the iBook? Was it Norton DiskDoctor or Alsoft's DiskWarrior? They are two entirely different things.
    Norton DiskDoctor was developed for OS 9. It doesn't recognize OS X as a legitimate operating system, identifies OS X as "errors" on your drive, and sets about "fixing" those errors, really messing things up in the process. (It does this even if you run it in OS 9 on a drive that has OS X on it.)
    Apple calls the sign you are seeing when trying to boot from the CD a "prohibitory sign."
    Check out this Apple Knowledge Base article on what to do about a prohibitory sign at startup:
    http://docs.info.apple.com/article.html?artnum=106805
    Maybe something there will help.

  • Installing problem - need help

    New to this forum - hoping someone can help - I downloaded Adobe Creative Suite 6 in "stops and starts" over a period of 20 hours as I had to sleep, go to work, etc - but it seemed to pick it up where it left off when I fingered the pad to "wake it up" and managed to finish the whole download. Everything went fine - accepted codes, etc - and installed. But an "exit summary" said that installation had failed for Illustrator and Photoshop, and, indeed, Illustrator and Photoshop are not here to use . . .  now what do I do? Was the download the problem? do I need to "uninstall" everything and start over?

    no, click on the program so the application manager opens.
    it should look something like this:

Maybe you are looking for