I get an itunes.exec error and can't open itunes

I cannot open itunes because I get an itunes.exec error each time.  How do I correct this?
Boognutly

What's the precise text of that error message, please? (There's a few different ones I can think of that you might be getting.)

Similar Messages

  • Working on linking one pdf to other documents and got and (43) error and can't open the main pdf.

    Working on a pdf document linking to other pdfs and got a (43) error message and can't open the document. How to fix.

    Hi dotcofton,
    Is it possible that the PDFs you're working on are on a USB? Windows can return this error when a device is no longer accessible by Windows.
    Please let us know if that is not the case, and we will go from there.
    Best,
    Sara

  • I want to get rid of that compass and can t open 2 photos together on  CS5

    please help me to disable that compass for good until I really need it, or I ll go crazy (the thing that makes a picture tilt when you really don t need it),
    also I can t open 2 pictures together, separately, in CS5, one falls on top of the other, when I can do it in CS3, very odd.

    Go to preferences (Photoshop menu > preferences >interface) and uncheck "Open documents as tabs".
    For turning off the rotate view tool, you could try turning off the rotate gesture in your system prefs, or unchecking "enable gestures" in the interface tab of the Photoshop prefs.

  • I have been getting a "Runtime Error" and can't open Adobe Photoshop Elements Editor

    We are using Adobe Photoshop Elements version 9.0.3 (20110328.m.11320).  For several weeks it has not been possible to open the Editor, although the Organizer opens as usual.  We get an error message that says "Runtime Error! Program: ...\Adobe\Photoshop Elements 9\PhotoshopElementsEditor.exe This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information."  What can we do to correct this problem?

    Thanks, Ken!  I have to reply by e-mail, as the Forum site has been down
    for maintenance since last night.
    I am running Windows 7 Professional SP1.
    Uninstalling and booting should be straightforward.  I saved the
    following files in my Downloads folder from my initial installation of
    Adobe PSE 9.0 on 4/22/11:
    Adobe_Photoshop_Elements_9-AkamaiDLM.exe (355 kb application)
    PhotoshopElements_9_LS15.exe (1,200 kb application)
    PhotoshopElements_9_LS15.7z (1,838,546 kb WinRAR archive)
    Will these suffice for reinstalling the program?  Can you tell me how I
    should go about the reinstallation?  (I tried to find a page to download
    the Adobe PSE 9.0 program on the Adobe website, but could only locate a
    patch for 9.0.3, which I think must already have been included in the
    original installation.)
    Also, there are four folders, corresponding to four catalogs, in
    C:\ProgramData\Adobe\Elements Organizer\Catalogs.  Will those survive
    the uninstall/reinstall process?  Should I back them up just prior to
    uninstalling to preserve them for restoration after the reinstall?
    Finally, should I back up the 9.0 and Organizer folders in
    C:\ProgramData\Adobe\Elements Organizer for restoration as well?  And
    the C:\ProgramData\Adobe\Photoshop Elements folder?
    Thank you.  I am grateful for your help!
    Peter

  • After using an ExtendScript (via ESTK) Illustrator becomes corrupted and "Can't open illustration."

    Hey, thanks for reading.
    I'm having a strange problem with Illustrator CS5 and ESTK CS5. I'm new to writing ExtendScripts, so I haven't a clue what could be going wrong here but here's the skinny:
    I've written the following code, which is very specialized to the exact document I'm working with. Using the ExtendScript Toolkit, the script goes through the following loops:
    The primary problem:
    For some reason, running this script causes Illustrator to become somehow corrupted. I can continue working with the document as long as it is open, but if I try to close it and re-open it, I get the infuriatingly unhelpful error dialog "Can't open illustration." With no extra details.
    The same error comes up if I try to open any other .ai files. Shutting down and rebooting doesn't fix the problem. I have to completely uninstall Illustrator, then re-install it before it will work again. And even then, if I try to open the ExtendScript-corrupted file the whole Illustrator app gets corrupted and needs to be reinstalled.
    Oh, also Illustrator itself shows up as "(Not responding)" while the script is running, but the ESTK console clearly shows that the script is chugging along as expected.
    Specifics about the script:
    There are 4 "Buttons" on the document, and a library full of nearly-identical symbols in the Library (different colored backgrounds for the buttons).
    The script cycles through every symbol in the library, replacing and deleting instances of the previous symbol.
    Then, for each symbol, it cycles through an array (technically an object-literal) of { language-code: "string" } pairs, and saves a .png of each artboard for each word.
    What follows is a pared-down version of the full script:
    (I tried to add a few $.sleep(10); calls, hoping that maybe just a brief slowdown in the processes might help. It didn't.)
    This script (in its original form) outputs a ton of files very, very quickly.
    Script Example
    var folder = Folder.selectDialog();                     // Ask for a folder choice.
    var aDoc = app.activeDocument;                        // Declare an active Document reference.
    var textLayer = aDoc.layers.getByName('text');   // Get the text layer, for moving it back/forward
    var textFrms = aDoc.textFrames;                       // Get all text frames, for language swap
    var allSymbols = aDoc.symbols;                         // Get array of all symbols in the symbol library
    var allSymbolItems = aDoc.symbolItems;            // Get an array of all symbol instances in the active document
    var helpTextArray =
        en: "help",
        az: "Kömək",
        cs: "Nápověda",
        da: "Hjælp",
        de: "hilfe",
        el: "Bοήθεια",
        en: "help",
        es: "ayuda",
            * There's normally 3 arrays with many more languages / translations
    if( aDoc &&                                      // We have an activeDocument
         folder &&                                    // and we have a selected output folder
         allSymbols.length > 0 &&             // We've got symbols
         allSymbolItems.length > 0 &&      // and we've got symbol instances "symbolItems"
         textFrms.length > 0 ) {                 // and we've got textFrames to manipulate.
        // For each symbol in our symbol library...
        for(var i = 0; i < allSymbols.length; i++) {
            // Run through all instances of symbols (symbolItems), and replace with a different symbol.
            for(var ii = 0; ii < allSymbolItems.length; ii++) {
                // Move text layer out of the line of fire.
                $.writeln('Move text to back');
                textLayer.zOrder(ZOrderMethod.SENDTOBACK);
                var currObj = allSymbolItems[ii];
                var newObj = aDoc.symbolItems.add(aDoc.symbols[i]);
                var symbolColor = aDoc.symbols[i].name;
                // Add the new / replacement symbol.
                newObj.left = currObj.left;
                newObj.top = currObj.top;
                newObj.width = currObj.width;
                newObj.height = currObj.height;
                // Remove the old symbol.
                currObj.remove();
                // Bring text back up to the front.
                $.writeln('Bring text to front');
                textLayer.zOrder(ZOrderMethod.BRINGTOFRONT);
                redraw();
                $.sleep(10)
            // Run through each language and each buttonText and save a copy.
            var currArray = helpTextArray;
            var currArrayName = "help";
            for(currLang in currArray) {
                switchText(currLang, currArray);
                $.sleep(10)
                // Run function to save .pngs of each artboard
                exportAll(currLang, symbolColor, currArrayName);
            } // end for (currLang in currArray)
        } // end symbols.length
    } // end if
    function switchText(lang, array) {
        //var textFrms = activeDocument.textFrames;
        var newText = array[lang];
        newText = (newText === "") ? array["en"] : newText;
        for(var i = 0; i < textFrms.length; i++) {
            var isHorizontal = ( textFrms[i].width > textFrms[i].height );
            var scale = 100;
            var scaleMatrix;
            textFrms[i].contents = newText;
               * There's normally an automatic text-resizer here
        } // for var i
    function exportAll(lang, color, buttonText) {
        var artBds = aDoc.artboards;
        var options = new ExportOptionsPNG24();
            options.antiAliasing = true;
            options.transparency = true;
            options.artBoardClipping = true;
        for(var i = 0; i < artBds.length; i++) {
             var currBoard = artBds.setActiveArtboardIndex(i);
             var buttonPosition =  artBds[i].name;
             var newFile = new File(folder.fsName+"/"+buttonText+"_"+color+"_"+buttonPosition+"_"+lang+".png");
             aDoc.exportFile(newFile,ExportType.PNG24,options);
             $.writeln('A file was saved with the name:: '+buttonText+'_'+color+'_'+buttonPosition+'_'+lang+'.png');
             $.sleep(10)
    function revertToOriginal() {
        $.writeln('Revert');
        // Switch the text back to help.
        switchText("en", helpTextArray);
        // For each symbol instance...
        for(var i = 0; i < allSymbolItems.length; i++) {
            // Move text layer out of the line of fire.
            $.writeln('Move text to back');
            textLayer.zOrder(ZOrderMethod.SENDTOBACK);
            var currObj = allSymbolItems[i];
            // Add in the placeholder since we're reverting.
            var newObj = aDoc.symbolItems.add(aDoc.symbols[0]);
            var symbolColor = aDoc.symbols[0].name;
            // Add the new / replacement symbol.
            newObj.left = currObj.left;
            newObj.top = currObj.top;
            newObj.width = currObj.width;
            newObj.height = currObj.height;
            // Remove the old symbol.
            currObj.remove();
            // Bring text back up to the front.
            $.writeln('Bring text to front');
            textLayer.zOrder(ZOrderMethod.BRINGTOFRONT);
            redraw();
            $.sleep(10)
            $.writeln('REVERT');
    revertToOriginal();
    Are there best practices that I'm unaware of here that could be causing this corruption?
    Does anyone know what could be happening?
    The only error I ever get is "Can't open illustration." There's never anything more helpful, so I have no idea what could be going wrong.
    If there's any more information that would be of use to anyone I'd be happy to share. This is wasting a lot of my time and making me pull my hair out like crazy,

    I have not had the time to look over your script but at a glance there are a few things I would handle differently…
    Firstly returning a document to a given state… If you play with this snippet you can see that app.undo() returns to the last called app.redraw() if there is one else it undo's the whole script…
    #target illustrator
    doSymbols();
    function doSymbols() {
        var doc = app.activeDocument;
        var sym = doc.symbols[0];
        for ( var i = 0; i < 4; i++ ) {
            var foo = doc.symbolItems.add( sym );
            foo.position = Array( i * 72, -( i * 72 ) );
            app.redraw(); // Comment this out to see…
        app.undo(); // Returns to last redaw state if any…?
    Secondly your symbols… You know you can just change the symbol instance's symbol reference…? If they are almost the same particualy size then its an easy swap…?
    #target illustrator
    doSymbols();
    function doSymbols() {
        var doc = app.activeDocument;
        var sym = doc.symbols[1]; // Next symbol in the palette
        for ( var i = 0; i < 4; i++ ) {
            doc.symbolItems[i].symbol = sym;
            app.redraw();

  • I keep getting the following message:  Runtime Error...Microsoft Visual C + Runtime Library  Program C:\Program Files\iTunes\iTunes.exe  R6034 An application has made an attempt to load the C runtime library incorrectly and can't open iTunes now.  Help!!

    I keep getting the following message:
    Runtime Error...Microsoft Visual C++   Runtime Library  Program C:\Program Files\iTunes\iTunes.exe
    R6034 An application has made an attempt to load the C runtime library incorrectly and can't open iTunes now.
    Please could someone help with this query as I am at a loss as to why this problem is now occurring?  Thank you.

    Check the user tip below.
    https://discussions.apple.com/docs/DOC-6562

  • TS3694 I'm running XP. After downloading the latest itunes update i get a "Runtime error" and can't start itunes. Help?

    I'm running XP. After downloading the latest itunes update i get a "Runtime error" and can't start itunes. Help?

    iTunes 11.1.4 for Windows- Unable to install or open - MSVCR80 issue
    Solving MSVCR80 issue and Windows iTunes install issues.
    Thanks to user turingtest2 for this solution.
    Solving MSVCR80 issue and Windows iTunes install issues.
    If the above doesn’t do the trick entirely, then use the instructions in the following as it applies to the version of Windows you are using:
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    You may be required to boot into safe mode to complete the folder deletion process.

  • I keep getting error message, "can't open application PACE because PowerPC applications are no longer supported." I've run Clean My Mac and I still get the error.

    I keep getting error message, "can't open application PACE because PowerPC applications are no longer supported." I've run Clean My Mac and I still get the error.

    Use the Finder "Go" menu while holding down the option key to expose your User / Library folder.
    Look in the Application Support folder for PACE items and delete them.

  • I have the b200 error and can't get the cartirdges to move out so I can change it.

    I have a MX850 cannon. I have the b200 error and can see that the middle cartridge is empty but I can't get the ink cartridge holder tomove out. I have tried with power off but the ink cartridge holder won't move out.

    Hi ernja.
    The B200 error is a generic internal error code and could mean one of many things.  Based on this, your PIXMA MX850 would require service.  It is recommended that you contact live technical support . There is NO charge for this call.
    Please dial 1-866-261-9362, Monday - Friday 10:00 a.m. - 10:00 p.m. ET (excluding holidays).
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Hi, Im trying to install the CC installer on my new MacPro. When the installer loads it says there's a "Download Error" and can't get beyond that. Everything work fine on my old Mac. Any Ideas?

    Im trying to install the CC installer on my new MacPro. When the installer loads it says there's a "Download Error" and can't get beyond that. Everything work fine on my old Mac. Any Ideas?

    Chasel please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html for information on how to resolve download errors.

  • Hi, i get the error -49 when trying to Export a Movie edited in iMovie and recorded with Elgato Video Capture anyone know why i get this Error and can help me?

    Hi, i get the error -49 when trying to Export a Movie edited in iMovie and recorded with Elgato Video Capture anyone know why i get this Error and can help me?

    Read this
    http://support.apple.com/kb/ts1583

  • Henever I am in Mozilla I get a pop up saying my PC has 7 window errors and can run faster. I cannot see how to get rid of this.

    I tried to download Tetris yesterday onto my laptop - not quite what you would call an ambitious gamer!
    As it was doing so I noticed that the software was trying to alter some settings in the registry.
    Now whenever I am in Mozilla I get a pop up saying my PC has 7 window errors and can run faster. I cannot see how to get rid of this.
    When I copy the link location it says:
    https://secure-ams.adnxs.com/click?KGIRww5jtj8oYhHDDmO2PwAAAICXbtI_KGIRww5jtj8oYhHDDmO2Py8cBrFeTaRkUe4MK_5ewBbHVyJRAAAAAMypEAA_AQAAPwEAAAIAAAAwB0YA6-ECAAAAAQBVU0QAVVNEACwB-gDulQAA42kAAQMCAQUAAIQARiCzrAAAAAA./cnd=%21ngVsMQjTqzoQsI6YAhjrwwsgBA../referrer=https%3A%2F%2Fwww.google.co.uk%2F/clickenc=http%3A%2F%2Fappround.net%2Fpcperformer%2Fst6%2Fpcperformer-st6.php%3Fcid%3D3902%26tid%3Dams1CNHcs9ji35fgFhACGK-4mIjrq5PSZCIOMjEzLjc4LjE0NC4yMTQoAQ..
    and here is the image
    Any ideas?

    Such a pop-up is likely caused by malware installed on your computer.
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • I am unable to install Lion. I have a Core 2 Duo iMac with 4GB of Ram and 120GB of free space - and no Bootcamp or other partitions - and yet repeatedly get the 'no recovery' error. Can anyone help?

    I am unable to install Lion. I have a Core 2 Duo iMac with 4GB of Ram and 120GB of free space - and no Bootcamp or other partitions - and yet repeatedly get the 'no recovery' error. Can anyone help?

    Run Disk Utility located in /Applications/Utilities before trying to upgrade to Lion in case the startup disk needs repairing.
    Using Disk Utility to verify or repair disks

  • I have recently purchased MacBook Pro with Mac OSX 10.7.3 Lion and I would like to install Final Cut Pro 6 Studio2, and it came up with this error: 'you can't open application FinalCutProStudio.mpkg because PowerPc apps are no longer supported..pls advise

    I have recently purchased MacBook Pro with Mac OSX 10.7.3 Lion and I would like to install Final Cut Pro 6 Studio2, and it came up with this error: 'you can't open application FinalCutProStudio.mpkg because PowerPc apps are no longer supported......Is there a way to run FCP6 on lion withoput this error? Any help would be appreciated.....

    Hi Shane,
    Just one more quesiton re: this topic, I am looking to get rosetta but do not have Leopard or Snow Leopard...
    I read that it is not on Snow Leopard only on Leopard....so do I need to get only Leopard? Can u advise?
    Alternatively I do have Mac OS X Tiger so is it on this and can I install it from here?
    Please excuse my lack of knowledge here, just trying to get my FCP 6 up and running asap....
    Best Rgds.

  • I bought a book on itunes, and can't open it. tried to send it to my iphone so i could read it there and it won't let me carry it over. I have updated Ibook on my iphone. What do I do? I do not want to buy the book again.

    I bought a book on itunes, and can't open it. tried to send it to my iphone so i could read it there and it won't let me carry it over. I have updated Ibook on my iphone. What do I do? I do not want to buy the book again.

    You won't be able to open it on your computer, ibooks can currently only be read in the iBooks app on an iPad, iPhone and iPod Touch. How were you trying to get it to your phone, syncing it by selecting it on the iPhone's Books tab when connected to your computer's iTunes, or by dragging-and-dropping it from the Books part of your iTunes library over and onto the iPhone 'device' ?  Another option is to try re-downloading it directly in the iBooks app on your iPhone via the Purchased tab in the ibookstore in it (re-downloading).

Maybe you are looking for