ITunes compatibility error "Make older programs run in

I've been installing iTunes several times and after launching it it stops working sending message:
Then I tried to run iTunes to Troubleshoot compatibility and get the error message:
And it has been impossible to run iTunes no matter how many times I've re installed it or running to troubleshoot.
Thanks for any help.

For general advice see Troubleshooting issues with iTunes for Windows updates.
The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
iTunes doesn't need compatibility mode to run, but you may need to run it as an administrator.
tt2

Similar Messages

  • Os10.5 error message 'A program run as part of the setup did not finish as expected. Contact your package vendor.''

    I'm using windows xp and kept getting error message when installing the latest os10.5. 'There is a problem with this windows installer package. A program run as part of the setup did not finish as expected. Contact your support personal or package vendor.' I've tried removing itunes completely then re-install the latest version but same message popped up again. Help?

    I'm using windows xp and kept getting error message when installing the latest os10.5. 'There is a problem with this windows installer package. A program run as part of the setup did not finish as expected. Contact your support personal or package vendor.' I've tried removing itunes completely then re-install the latest version but same message popped up again. Help?

  • Make the program run again, given the user's input?

    Hello,
    I need a little help with this program, you can see the entire thing below. I'm trying to make the program give the user the option to run again, using y or n. It's for a college project. Thanks.
    import java.util.*;
    class MyFifthProgram
         public static void main (String[] args)
              //char letterOnTelephone;
              do
                   System.out.print("Enter a letter from A - Z and I will output the corresponding number \non the telephone, then press enter:");
                   Scanner keyboard = new Scanner(System.in);
                   String letterOnTelephone = keyboard.next();
                   char letter = letterOnTelephone.charAt(0);
                   switch (letter)
                        case 'Q':
                        case 'q':
                        case 'Z':
                        case 'z':
                             System.out.println("Sorry, the letter " + letterOnTelephone + " cannot be found on the telephone....");
                             break;
                        default:
                             System.out.println("Sorry, the key " + letterOnTelephone + " cannot be found on the telephone......");
                             break;     
                        case 'A':
                        case 'a':
                        case 'B':
                        case 'b':
                        case 'C':
                        case 'c':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 2.");
                             break;
                        case 'D':
                        case 'd':
                        case 'E':
                        case 'e':
                        case 'F':
                        case 'f':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 3.");
                             break;
                        case 'G':
                        case 'g':
                        case 'H':
                        case 'h':
                        case 'I':
                        case 'i':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 4.");
                             break;
                        case 'J':
                        case 'j':
                        case 'K':
                        case 'k':
                        case 'L':
                        case 'l':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 5.");
                             break;
                        case 'M':
                        case 'm':
                        case 'N':
                        case 'n':
                        case 'O':
                        case 'o':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 6.");
                             break;
                        case 'P':
                        case 'p':
                        case 'R':
                        case 'r':
                        case 'S':
                        case 's':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 7.");
                             break;
                        case 'T':
                        case 't':
                        case 'U':
                        case 'u':
                        case 'V':
                        case 'v':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 8.");
                             break;
                        case 'W':
                        case 'w':
                        case 'X':
                        case 'x':
                        case 'Y':
                        case 'y':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 9.");
                             break;                                             
                   System.out.println("Would you like to run this program again? Enter Y for yes, or N for no:");
                   Scanner keyboard1 = new Scanner(System.in);
                   String runAgain = keyboard1.next();
                   char runIt = runAgain.charAt(0);
                   }while (runIt == 'y');
                        System.out.println("You can choosen " + runAgain + " therefor the program will run again.");
         }

    Thanks! That did the trick, however that doesn't solve my problem. How do I ask the user to run the program again at the end of the program? What am I missing?
    // Program takes a single letter and displays the corresponding digit on the telephone.
    import java.util.*;
    class MyFifthProgram
         public static void main (String[] args)
              System.out.println("Would you like to run this program? Enter Y for yes, or N for no:");
              Scanner keyboard1 = new Scanner(System.in);
              String runAgain = keyboard1.next();
              char runIt = runAgain.charAt(0);
              if (runIt == 'n')
                   System.exit(0);
              else if (runIt == 'N')
                   System.exit(0);
              do
                   System.out.print("Enter a letter from A - Z and I will output the corresponding number \non the telephone, then press enter:");
                   Scanner keyboard = new Scanner(System.in);
                   String letterOnTelephone = keyboard.next();
                   char letter = letterOnTelephone.charAt(0);
                   switch (letter)
                        case 'Q':
                        case 'q':
                        case 'Z':
                        case 'z':
                             System.out.println("Sorry, the letter " + letterOnTelephone + " cannot be found on the telephone....");
                             break;
                        default:
                             System.out.println("Sorry, the key " + letterOnTelephone + " cannot be found on the telephone......");
                             break;     
                        case 'A':
                        case 'a':
                        case 'B':
                        case 'b':
                        case 'C':
                        case 'c':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 2.");
                             break;
                        case 'D':
                        case 'd':
                        case 'E':
                        case 'e':
                        case 'F':
                        case 'f':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 3.");
                             break;
                        case 'G':
                        case 'g':
                        case 'H':
                        case 'h':
                        case 'I':
                        case 'i':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 4.");
                             break;
                        case 'J':
                        case 'j':
                        case 'K':
                        case 'k':
                        case 'L':
                        case 'l':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 5.");
                             break;
                        case 'M':
                        case 'm':
                        case 'N':
                        case 'n':
                        case 'O':
                        case 'o':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 6.");
                             break;
                        case 'P':
                        case 'p':
                        case 'R':
                        case 'r':
                        case 'S':
                        case 's':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 7.");
                             break;
                        case 'T':
                        case 't':
                        case 'U':
                        case 'u':
                        case 'V':
                        case 'v':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 8.");
                             break;
                        case 'W':
                        case 'w':
                        case 'X':
                        case 'x':
                        case 'Y':
                        case 'y':
                             System.out.println("The letter " + letterOnTelephone + " corresponds to the number 9.");
                             break;                                             
                   }while (runIt == 'n');
              //          System.out.println("Would you like to run this program? Enter Y for yes, or N for no:");
              //          Scanner keyboard2 = new Scanner(System.in);
              //          String runAgain1 = keyboard2.next();
              //          char runIt1 = runAgain1.charAt(0);
              //          if (runIt1 == 'n')
              //               System.exit(0);
              //          else if (runIt1 == 'N');
              //               System.exit(0);
         }

  • How can I make my program Run forever?

    I would like to know how can I make my program execute some method while the GUI still open. I have something like this.
      public static void main(String args[]) {
        System.out.println("****************************");
        System.out.println("    PACKET READER CONSOLE   ");
        System.out.println("****************************");
        IPDetector window = new IPDetector(); // IPDetector is the JFrame
        window.setTitle("IPDetector Analyzer");
        window.pack();
        window.show();
        PortListener pl = new PortListener();// Is my portlistener class
        PacketReader c = new PacketReader();
        while(JFrame still open){// I dont know how to put a statemente here
          pl.start();// this method reads from a port and returns a string
          String cc = pl.data;// gets the string from the port listener
          while(!cc.equals("")){
            c.portWriter(cc);// writes the string into a file
      }I want that my portlistener keeps reading all the time, and if is something in the socket information.
    Should I use a thread? Any ideas? thanks.
    Chris

    I still not understanding how to make it thread. My main class is this one IPDetector. and it looks like this.
    public class IPDetector extends JFrame {
      // Declaration of the instance variables
      private static ArrayofDisplay  ad = new ArrayofDisplay();
      private ArrayofCreators database = new ArrayofCreators();
      JLabel sourceLabel;//etc..
      public IPDetector() {
        IPDetectorLayout customLayout = new IPDetectorLayout();
        getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
        getContentPane().setLayout(customLayout);
        sourceLabel = new JLabel("Source IP Add.");
        getContentPane().add(sourceLabel); 
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
      // I get confused here...
      private boolean alive; // Do I need to declared here?
      public void setAlive(boolean val) { // This one also?
        alive = val;
      // IPDetector Methods...
      public void displayCaller(ArrayofDisplay aD){  }
      public void setAndReplace(String text)  {    }
      public void refresh(){ }
      public boolean action(Event evt, Object arg){ }
      //etc...
      public static void main(String args[]) {
        System.out.println("***********************************************");
        IPDetector window = new IPDetector();
        window.setTitle("IPDetector");
        window.pack();
        window.show();
        PortListener pl = new PortListener();
        PacketReader c = new PacketReader();
        while (alive) {// Is this correct here?
          pl.start();
          String cc = pl.data;
          while(!cc.equals("")){
            c.portWriter(cc);
            window.refresh();
            cc = "";
    class IPDetectorLayout implements LayoutManager {
      public IPDetectorLayout() {  }
      public void addLayoutComponent(String name, Component comp) {  }
      public void layoutContainer(Container parent) {  }
    }

  • Music in iTunes Speeds Up When Certain Programs Run

    Like the title says, sometimes, when I run certain programs and iTunes simultaneously, the music in iTunes starts to automatically play as if in fast-forward, but as soon as I close the program, the music starts playing fine again. Is there a solution besides the obvious one of not running the two programs simultaneously?

    I'm having the same problem with my nano. Podcasts will sometimes play normally, and other times will be sped up and play much faster than normal. I've set the Audiobooks setting to "Normal" as opposed to "Fast" but it doesn't make any difference. And it's inconsistent...I was listening to a podcast at normal speed and paused it, and the next day when I went to resume it, it played at the fast speed. Any ideas here?

  • How can I make my program run faster ? (changing colour indicators quicker)

    Hi everyone, I have a program with 100 indicator colour backgrounds that change according to 100 temperatures. A case structure (with 100 cases) sets the background colours one after the other and runs in a while loop with no timing (as fast as possible). The temperatures are loaded up from an array that is initialized at the beginning of the program. The idea is to have an overall view of the change of temperatures (just by looking at the change of colours). Everything works fine except that it doesn’t run fast enough... The change of colours is not smooth at all ... you can really see the increments. It works fine with 20 temperatures for instance. 1) Would anybody have a solution to improve this? I was wondering if Labview perhaps actualises all of the values each time one changes (just like with the excel cells: an option that you can desactivate and make things run quicker when you use a macro) which would make a big loss of time....  
    There is no data saving this is just a post treatment program. So My my program isn't doing anything else.
     2) I have attached a screen print of a problem a faced when making up the VI I attached. Why can’t I wire directly to the Index Array that is in the For Loop in my VI… I had to go throw a shift register to make up the example. When going back to my original program I couldn’t use the index array a second time (screen shot). Thanks a lot for any help, Regards, User  
    Solved!
    Go to Solution.
    Attachments:
    Forum question.vi ‏13 KB
    forum.JPG ‏50 KB

    Here's a possible solution:
    Ton
    Message Edited by TCPlomp on 11-03-2010 11:16 AM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!
    Attachments:
    Forum question.png ‏23 KB

  • ITunes Compatibility Error

    Whenever I bring up iTunes I immediately receive an error message which prevents iTunes from loading or playing. I have reinstalled iTunes several times without success
    Pop up window error message
    The pop up window states "windows - no disk"
    Exception Processing Message
    C0000013 Parameters 75b6bf92 4 75b6bf92 75b6bf92
    Thanks in advance for the assistance -

    Checkout this discussion in the microsoft virus forum:
    http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?pg=2&cat=enUSc9f48b85-5bde-4e6f-b9f4-c199b934c707&lang=en&cr=US&guid=&sloc=en-us&dg=microsoft .public.security.virus&fltr=
    Look at the thread called - exception processing message c0000013 - AVG anti-rootkit
    You may need to page up or down to find it.
    Also run a virus scan, I have seen a few reports of it being associated with a trojan.

  • How to make a program run in background?

    Is there any ways to make an invisible program with java? a program that is running in background but the user cannot see it and it's not in the Start bar and the user cannot close it.

    There are also 3rd party software that lets you install a java program as a service in winnt/2k/xp so that you can start/stop it from the service manager, doesnt even matter if the java program is gui based or not, as there are options (in win2k at least) in the service manager that allows the program to interact (think show gui) or not...one software called JNT comes to mind..
    Anyway, if you're using win98/me equivalent, then just use javaw.exe like suggested by previous posters.

  • How can I make a program run in the background?

    I'm working on a custom console program. I plan to have the commands as seperate applications and create a server/client relationship so they can communicate with each other. However whenever I call a command I don't want to have a console window pop up, flicker out, etc. I want it to look like it's one complete app. So I'm wondering how can I have the app run in the background?

    If you're using a unix system, use the "&" argument (or character, what is its name anyway?) at the end of the command line.
    I think you can use javaw in the MS-Windows world.

  • How do you make a program run when any user logs in?

    I have an application which will need to run when any users logs in.
    Such that Joe downloads and installs the application, logs out, then Sally logs in and the application runs for Sally.
    Does anyone know how to do this?

    Hey Steve, thanks for that link. It seems to be what
    I am looking for. What is the meaning of the
    ~/Library vs /Library ? They are definitely
    different folders.
    Yes, they are definitely different folders. The "~" character represents the current users home folder, so "~/Library" represents the Library folder that's located inside a users home folder. Anything placed in there will only affect the one user whose home folder you've accessed.
    The "/Library" folder is the Library folder that exists at to root of the boot volume. Things placed in this Library folder will affect all users of the system. Basically it's sort of a "global" Library.
    Also, from a script, how do I add an item to execute
    for that kind of PList?
    That could be tricky based on the structure of that particular plist file. I haven't really looked at it closely but one place you could start is to read the "man" page for the "defaults" command... enter "man defaults" in Terminal. The "defaults" command allows you to read/write plist files, but defaults is not very good at accessing deeply nested plist items.
    Related to that, how do I tell if the logging item
    for my App is already there? I do not want to keep
    adding to the list if it is there. If someone
    deletes my app and then reinstalls it, I do not want
    it to run twice, three times, etc..
    Again, you could possibly read the plist using the defaults command and determine whether your item was already present or not.
    Do you know of the one in the ~/Library path, what
    user it execute as? Since it is all users, it
    probably is root or something like that.
    No, the one in ~/Library is in each individual user home folder. It will execute with the current user's privileges. This is where Login Items normally go when you go through the GUI... "Sys.Prefs -> Accounts -> Login Items" and add a login item for one user.
    Even items placed in /Library, which should execute for all users, will execute with the current user's privileges.
    In the near
    future we might need root privileges, so I might need
    a program to startup for all users as root instead of
    the user.
    Is your app, that needs to run at login time, a GUI application or is it a faceless shell script (or something similar). Your original post gave me the impression that you needed to launch a GUI application. However, if it's a shell script then you probably want to look at doing a LoginHook instead of using the Login Items procedure at the web page I posted earlier. I believe a LoginHook will also give you the ability to run the script as root.
    Check out this link at the ADC website.
    or
    Take a look at this information and this utility at Mike Bombich's website.
    Steve

  • Make java program run on a scheduler

    I have a java program that currently runs as a cron job at specific intervals. I want to run it at smaller intervals not allowed by cron, like every minute. I want it to wake up, check it's work load, process it, and then sleep for a minute...and do this over and over again. What code can I insert into my java program to accomplish this.

    All you need is to have all of your Threads go back to sleep when there is no work to be done so that your application doesn't consume any resources while it doesn't have any work to do.
    If you want your application to go back to sleep for one minute when it has emptied a JobQueue, all you need is to use Thread.sleep(60000); inside the piece of code which is looking for the work load.
    Overall, this approach is much better than a cron job, since you could end up with concurrency issues with the cron job. Consider ending up with a workload which requires more than a minute to be processed... Before you can get it done, there's a new instance of your program which tries to get the same jobs done at the same time! You could get a lot of headaches with this :P
    Message was edited by:
    Dalzhim

  • Make Java program run on other pc's

    Good afternoon,
    So I have this Java program compiling on my pc through NetBeans.
    Now if I want this program to run on other pc's on its own (without NetBeans or any other program), preferably through a GUI, do I have to convert it to a JAR file? How does this exactly works out?
    Thanks for your help.

    alley wrote:
    So I have this Java program compiling on my pc through NetBeans.And Netbeans does it using the JDK. it is always the JDK, no matter how many tools you wrap around it on top. You don't need Netbeans to run your stuff either, it is merely a development convenience that Netbeans provides you.
    >
    Now if I want this program to run on other pc's on its own (without NetBeans or any other program)Impossible - you need at least a compatible Java runtime.
    , preferably through a GUIYou mean by double clicking on the program icon through the OS?
    , do I have to convert it to a JAR file? That would be an easy way yes - an executable jar to be more precise
    How does this exactly works out?Netbeans builds the jar automatically, just check out the folders of your project to find it. If you set a main class in the project properties, it is even an executable jar. Double click it and if the Java runtime is properly setup (which tends to be the case when it installs succesfully, but many people manage to screw it up in a way I can't imagine anyway), it will run.
    For further guidance, check the online netbeans manual and research executable jars.

  • Itunes unknown error make sure your network connection is active

    I cannot connect to i-tunes and it keeps saying make sure your connection is active but I have a great connection.  Please help

    Did you find a resolution as I'm having same problem?

  • Send a mail when there is an error in program running

    I drive some instruments with Labview and I would know, if I am not at work, receive a mail by my program if there is a problem or an error in the program running.

    mitsu wrote:
    > I drive some instruments with Labview and I would know, if I am not at
    > work, receive a mail by my program if there is a problem or an error
    > in the program running.
    In LabVIEW 7.0 FDS or better you have SMTP VIs in the Communication
    function palette. For LabVIEW versions before 7.0 you could use the
    Internet Toolkit or try and get SMTP VIs from www.OpenG.org.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Every time I start iTunes I get the message: "iTunes exec has been set to run in compatability mode for an older version of Windows. Turn off compatability mode for iTunes before you open it." How do I turn off the compatability mode?

    Every time I start iTunes I get the message: "iTunes exec has been set to run in compatability mode for an older version of Windows. Turn off compatability mode for iTunes before you open it." How do I turn off the compatability mode? Particularly when I have to do it before I turn on iTunes.

    Try the following document, only be sure that none of the boxes in the compatibility mode tab are checked (not just the compatibility mode box itself):
    iTunes for Windows: How to turn off Compatibility Mode

Maybe you are looking for