New beginner with iTunes need help please!!

When i am trying to open iTunes this is the message that has been brought up has anyone had the same problem and who knows how i could fix this problem??
Error Signature
AppName: itunes.exe AppVer:7.0.2.16 ModName: unknown
Reporting Details
This error report includes; information regarding the condition of iTunes when the problem occurred the operating system version and computer hardware in use; Digital Product ID, which could be used to identify your license and the Internet Protocol (IP) address of your computer
We do not intentionally collect your files, name and address or any form of personally identifiable information. Etc etc
  Windows XP  

Dougal95 wrote:
The list doesn't say which one is in which format.
IN the iTunes menu, click on View, then View Options, and check the "Kind" box. This will display the Kind for each track. if it says "MPEG Audio File," it's an MP3.
Should all my MP3 files be converted to simplify things.
No need to convert any music. iTunes can play MP3s.

Similar Messages

  • My iTunes won't open on my laptop. Error message says The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes. Help Please!

    My iTunes won't open on my laptop. Error message says The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes. Help Please!

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • The file "i Tunes Library.itl" cannot be read because it was created by a newer version of iTunes. Help please?

    Since yesterday I have been trying to get my iTunes to allow me to sync my iPhone with it to get the latest update. However, once I finally managed to download it iTunes would now allow for it to sync, telling me I needed the 64 bit iTunes which I already had and had downloaded at least 4 times trying to get it to work.
    I followed someone elses advice and uninstalled all apple products and went to reinstall it and now I am getting the following message.
    The file "i Tunes Library.itl" cannot be read because it was created by a newer version of iTunes.
    Does anyone know how to fix this problem? And possibly even my other problem with the inability to sync my iPhone with iTunes?
    Thank you.

    no one?

  • New to iCloud and need help please with getting it working

    I've got an iPad 2 and an iPhone 5 and have decided that it's about time to set up iCloud on my devices. I have followed the instructions on the website and in the icloud settings on both devices have switched on mail, contacts, calendars, reminders, safari, notes, photostream (my photo stream-on), documents and data, find my iphone, and icloud backup on. I have ensured that both devices have been backed up and automatic downloads on iTunes & App stores have all been switched on.
    I have not yet set up my PC for iCloud.
    My understanding is that icloud will sync new downloads and photos etc so I have just tried taking a picture on my iphone, expecting it to appear in my camera roll on my iPad and nothing has happened.
    Please can someone advise me if I am doing something wrong or how to resolve this.
    Many thanks.

    Welcome to the Apple Community.
    Photostream only syncs photos over Wi-Fi, make sure you are connected to Wi-Fi to begin with.
    Photostream only syncs when the camera app is closed, ensure it is closed.
    Photostream only syncs when the battery is above 20%, try recharging the device
    Try disabling photo stream on your device (settings > iCloud), restarting your device and then re-enabling photo stream.
    If this doesn't help you may need to reset photo stream. You can do this at icloud.com by clicking on your name in the top right corner and then the advanced settings in the pop-up dialogue box that appears.
    Note: disabling photostream and re-enabling it will result in any photos that are currently in the photostream album on your device, that are older than 30 days old, not being added back.

  • I'm new to java and need help please

    I have an assignment involves modifying a previous assignment. the code for the previous assigment is shown below.(it was required to be done as an applet this assigment can be an application or an applet) I'm trying to modify this code to read a text file (items.txt) that looks like this:
    item # description price(this line does not appear in the text file)
    001 shaving cream 400.00
    999 razors 30.00
    I need to load the item# and price from the text file into arrays(I have no clue how to use multi-dimensional arrays in java and would prefer not to)
    I need to search the arrays based on the values entered by the user (item # and quantity) calculate the total for that item then create a new text file which has each line item for that order in the form:
    item# quant price per item total(price per item*quant entered)
    also also I need to be able to display the four items listed above after each loop as well as all the previous item number and quantities they selected until they indicate they don't want to select anymore.
    I've been working on this for days and it seems like nothing I try works. My major problems are:
    1. I have no idea how to read the text file and load those 2 items into their respective arrays
    2. I can't seem to create a textfile that looks like text for the output file.
    code]
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.*;
    import java.util.Locale;
    public class arraySelection
    extends JApplet {
    //Initialize the applet
    private Container getContentPane=null;
    public void init() {
    String string_item, string_quantity;
    String output = "";
    String description= "";
    int counter= 0;
    int itemNumber= 0;
    double quantity = 0 ;
    double tax_rate=.07;
    double total= 0, price= 0;
    double tax, subtotal;
    double Pretotal= 0;
    double priceArray[] = {1, .5, 3.65, 0.02, 0.09};
    String descriptionArray[] = {"salt", "pepper", "paprika", "garlic", "thyme"};
    // create number format for currency in US dollar format
    NumberFormat moneyFormat = NumberFormat.getCurrencyInstance( Locale.US );
    //format to have the total with two digits precision
    DecimalFormat twoDigits = new DecimalFormat("0.00");
    //Jtextarea to display results
    JTextArea outputArea = new JTextArea ();
    // get applet's content pane
    Container container = getContentPane ();
    //attach output area to container
    container.add(outputArea);
    //set the first row of text for the output area
    output += "Invoice\nItem#\tDescription\tQuant@Price\t Line Total" + "\n";
    do //begin loop structure obtain input from user
    // obtain item number from user
    string_item = JOptionPane.showInputDialog(
    "Please enter an item number 1, 2, 3, 4, or 5:");
    //obtain quantity of each item that user enter
    string_quantity = JOptionPane.showInputDialog("Enter the quantity:");
    // convert numbers from type String to Integer or Double
    itemNumber = Integer.parseInt(string_item);
    quantity = Double.parseDouble(string_quantity);
    switch (itemNumber) {//Determine input from user to assign price and description
    case 10: // user input item =10
    price = priceArray[0];
    description = descriptionArray[0];
    break;
    case 20: // user input item =20
    price = priceArray [1];
    description = descriptionArray[1];
    break;
    case 30: //user input item =30
    price=priceArray[2];
    description = descriptionArray[2];
    break;
    case 40: //user input item =40
    price=priceArray[3];
    description = descriptionArray[3];
    break;
    case 50: //user input item =50
    price=priceArray[4];
    description = descriptionArray[4];
    break;
    default: // user input item is not on the list
    output += "Invalid value entered"+ "\n";
    price=0;
    description= "";
    //Calculates the total for each item number and stores it in subtotal
    subtotal = price * quantity;
    //display input from user
    output += itemNumber + "\t" + description + "\t\t"+ quantity + "@" +
    moneyFormat.format( price) + "\t" + moneyFormat.format( subtotal) + "\n";
    //accumulates the overall subtotal for all items
    Pretotal = Pretotal + subtotal;
    //verifies that the user wants to stop entering data
    string_item = JOptionPane.showInputDialog(" Enter a positive integer to continue or 0 to stop. ");
    itemNumber = Integer.parseInt(string_item);
    // loop termination condition if user's input is 0 .It will end the loop
    } while ( itemNumber!= 0);
    tax = Pretotal * tax_rate; // calculate tax amount
    total = Pretotal + tax; //calculate total = subtotal + tax
    //appends data regarding the subtotal, tax, and total to the output area
    output += "\n" + "Order Subtotal" + "\t" + moneyFormat.format( Pretotal) +
    "\n" + "Tax" + "\t\t" + twoDigits.format( tax ) + "\n" + "Order Total" +
    "\t\t" + moneyFormat.format( total );
    //attaches the data in the output variable to the output area
    outputArea.setText( output );
    } //end init
    }// end applet Invoice
    Any help or sugestions would be greatly appreaciated. I've been working on this for over a week and everything I try goes nowhere.

    item # description price(this
    line does not appear in the text file)
    001 shaving cream 400.00
    999 razors 30.00
    I need to load the item# and price from the text file
    into arrays(I have no clue how to use
    multi-dimensional arrays in java and would prefer not
    to)That's good, because you shouldn't use multidimensional arrays here. You should have a one-dimensional array (or java.util.List) of objects that encapsulate each line.
    I've been working on this for days and it seems like
    nothing I try works. My major problems are:
    1. I have no idea how to read the text file and load
    those 2 items into their respective arrays
    2. I can't seem to create a textfile that looks like
    text for the output file.The java.io package has file reading/writing classes.
    Here's a tutorial:
    http://java.sun.com/docs/books/tutorial/essential/io/index.html

  • I'm new to java and need help please(repost)

    I have an assignment involves modifying a previous assignment. the code for the previous assigment is shown below.(it was required to be done as an applet this assigment can be an application or an applet) I'm trying to modify this code to read a text file (items.txt) that looks like this:
    item # description price(this line does not appear in the text file)
    001 shaving cream 400.00
    999 razors 30.00
    I need to load the item# and price from the text file into arrays(I have no clue how to use multi-dimensional arrays in java and would prefer not to)
    I need to search the arrays based on the values entered by the user (item # and quantity) calculate the total for that item then create a new text file which has each line item for that order in the form:
    item# quant price per item total(price per item*quant entered)
    also also I need to be able to display the four items listed above after each loop as well as all the previous item number and quantities they selected until they indicate they don't want to select anymore.
    I've been working on this for days and it seems like nothing I try works. My major problems are:
    1. I have no idea how to read the text file and load those 2 items into their respective arrays
    2. I can't seem to create a textfile that looks like text for the output file.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.*;
    import java.util.Locale;
    public class arraySelection
        extends JApplet {
      //Initialize the applet
      private Container getContentPane=null;
      public void init() {
           String string_item, string_quantity;
           String output = "";
           String description= "";
           int counter= 0;
           int itemNumber= 0;
           double quantity = 0 ;
           double tax_rate=.07;
           double total= 0, price= 0;
           double tax, subtotal;
           double Pretotal= 0;
           double priceArray[] = {1, .5, 3.65, 0.02, 0.09};
           String descriptionArray[] = {"salt", "pepper", "paprika", "garlic", "thyme"};
         // create number format for currency in US dollar format
         NumberFormat moneyFormat = NumberFormat.getCurrencyInstance( Locale.US );
         //format to have the total with two digits precision
         DecimalFormat twoDigits = new DecimalFormat("0.00");
         //Jtextarea to display results
         JTextArea outputArea = new JTextArea ();
         // get applet's content pane
          Container container = getContentPane ();
          //attach output area to container
          container.add(outputArea);
         //set the first row of text for the output area
        output +=  "Invoice\nItem#\tDescription\tQuant@Price\t Line Total" + "\n";
        do //begin loop structure obtain input from user
               // obtain item number from user
               string_item = JOptionPane.showInputDialog(
                   "Please enter an item number 1, 2, 3, 4, or 5:");
               //obtain quantity of each item that user enter
               string_quantity = JOptionPane.showInputDialog("Enter the quantity:");
               // convert numbers from type String to Integer or Double
               itemNumber = Integer.parseInt(string_item);
               quantity = Double.parseDouble(string_quantity);
                 switch (itemNumber) {//Determine input from user to assign price and description
                    case 10: // user input item =10
                      price = priceArray[0];
                      description = descriptionArray[0];
                      break;
                    case 20: // user input item =20
                      price = priceArray [1];
                      description = descriptionArray[1];
                      break;
                    case 30: //user input item =30
                      price=priceArray[2];
                      description = descriptionArray[2];
                      break;
                    case 40: //user input item =40
                      price=priceArray[3];
                      description = descriptionArray[3];
                      break;
                    case 50: //user input item =50
                      price=priceArray[4];
                      description = descriptionArray[4];
                      break;
                    default: // user input item is not on the list
                    output += "Invalid value entered"+ "\n";
                    price=0;
                    description= "";
             //Calculates the total for each item number and stores it in subtotal
             subtotal = price * quantity;
             //display input from user
             output += itemNumber + "\t" + description + "\t\t"+ quantity + "@" +
                       moneyFormat.format( price) + "\t" + moneyFormat.format( subtotal) + "\n";
             //accumulates the overall subtotal for all items
             Pretotal = Pretotal + subtotal;
            //verifies that the user wants to stop entering data
            string_item = JOptionPane.showInputDialog(" Enter a positive integer to continue or 0 to stop. ");
            itemNumber = Integer.parseInt(string_item);
          // loop termination condition if user's input is 0 .It will end the loop
       } while ( itemNumber!= 0);
        tax = Pretotal * tax_rate; // calculate tax amount
        total = Pretotal + tax; //calculate total = subtotal + tax
        //appends data regarding the subtotal, tax, and total to the output area
        output += "\n" + "Order Subtotal" + "\t" + moneyFormat.format( Pretotal) +
                  "\n" + "Tax" + "\t\t" + twoDigits.format( tax ) + "\n" + "Order Total" +
                  "\t\t" + moneyFormat.format( total );
         //attaches the data in the output variable to the output area
         outputArea.setText( output );
      } //end init
    }// end applet InvoiceAny help or sugestions would be greatly appreaciated. I've been working on this for over a week and everything I try goes nowhere.

    First answer: You shouldn't ask multiple questions in the same thread. Ask a specific question, with an appropriate subject line (optionally, assign the number of Dukes you are willing to give for the help). When question #1 is answered and question #2 arises, it's time for a new thread (don't forget to give out Dukes before moving on).
    Second answer: I think you need a Transfer Object (http://java.sun.com/blueprints/patterns/TransferObject.html). It's whole purpose is to hold/transfer instance data where it is needed. Create a class something like this:
    public class ItemTO
        private String _number;
        private String _description;
        private double _price;
        public ItemTO( String number, String description, double price )
            _number = number;
            _description = description;
            _price = price
        // Getter/Setter methods go here
    }then, in the code where you read in the file do something like this:
    BufferedReader input = null;
    try
        input  = new BufferedReader( new FileReader( "c:\\a.txt" ) );
        List items = new ArrayList();
        String line;
        String itemNumber;
        String itemDescription;
        double itemPrice;
        while ( (line  = input.readLine() ) != null )
         System.out.println( line );
            itemNumber = // Parse it from line
            itemDescription // Parse it from line
            itemPrice = // Parse it from line
            items.add( new ItemTO( itemNumber, itemDescription, itemPrice ) );
    catch ( FileNotFoundException fnfe )
        fnfe.printStackTrace();
    catch ( IOException ioe )
        ioe.printStackTrace();
    finally
        try
            if ( input != null )
                input.close();
        catch ( Exception e )
            e.printStackTrace();
    }As for how to parse the line of the file, I'll leave that to you for now. Are the three values delimited with any special characters?
    jbisotti

  • Having problems with burning - need help please!

    when I try and burn a disk itunes says no recording
    software found. Everytime I start up itunes it says the drivers associated with burning are missing. It ask me to
    reinstall the software which I do and I have the same
    problem. I have other burning software but cant burn any
    itunes Ive purchased do to the format. Any help would be greatly appreciated.
    The german note is:
    Achtung
    Die Registrierungseinträge für die iTunes Treiber zum Import und Brennen von CDs und DVDs fehlen. Diese kann Folge der Installation einer anderen Software zum Brennen von CDs sein. Bitte installieren sie iTunes erneut.
    Could anybody please help me??

    I need more information about your hardware configuration. Run the iTunes Help menu -> Run CD Diagnostics... command and post the results here.
    I'm assuming that you're not running 64-bit windows.
    It sounds like the driver didn't get installed. You could try doing a repair install on iTunes --
    Windows Start menu -> Settings -> Control Panels -> Add or Remove Programs
    Select iTunes, Select Change/Remove button, Select "Repair" radio button, click OK.
    If that doesn't work, you might try downloading just the CD drivers from :
    http://www.gearsoftware.com/support/drivers.cfm
    Get the first link, not the second one that talks about gearsec compatibility.

  • Post iLife 08 install issue with iTunes, need details please for install

    Like others in this discussion area after installing iLife '08 I received the following message after I then tried to open iTunes...
    "This copy of iTunes is corrupt or is not installed correctly. Please reinstall iTunes."
    This problem occurred on the family machine, a family with two teenagers with iPods. Get my drift? Lots of music we don't want to risk losing. Shortly after this problem arose I was in the local Apple Store and was advised as to best perform the recommended installation. To avoid losing the music the guy said to drag the music file over to my external drive, install the latest iTunes and then drag the music back.
    Questions;
    Is my memory correct, was it the music folder?, or perhaps the library I want to drag?
    What about the Artwork and/or Mobile Apps folders?
    I guess I need to do this for each user correct?
    Thanks for your help,
    Stuart
    Message was edited by: studog2

    I'm having the same problem. I did notice on the install disk when I went to re-install it that it said 0 KB for iTunes on the install disk. I think that the install disk is the problem. Have you had any results from all this.
    Thanks,
    Dave

  • Trouble with songs. need help please!

    alright, so here's my problem.
    last week i tried to put some songs from a cd on my ipod (video 30g). when they were in my library they worked fine but now on my ipod they are not working. if i click on them nothing is happening.
    i tried to delete them from my ipod but everytime i select them and hit delete, my itunes (latest version) freeze. i did erase them once before it froze but when i looked on my ipod they were still there. also, everytime i tried to put some new songs (not from the same cd) on my ipod, they go fine in my library but when i transfer them, it says synchronizing but does nothing.
    i don't know what to do and i really hope i don't have to restore and lose everything cause i lost everything last week as my hard drive died (i don't know if it can be related tho)
    help is needed!!!
    p.s. sorry for my english :S

    thank you but i did tried the basics. after posting my question here i tried a couple of thing and realized that all i could do was a restore. so i tried a restore and when i try it, my itunes doesnt do a thing and stop working. also, the weird thing is, when i look in my cache files for the ipod, no songs is in the folders where they are supposed to be, and when i try to play some songs it just show all the information but skip the songs quickly. so it seems like the information and everythng is still in the ipod but there's no songs in it anymore. so the only thing i'm looking for is for a way to restore the ipod to its original settings without using itunes...

  • Easier way to rename music files and locate them with iTunes? Help, please!

    A while back, I used a 3rd party software (Yamipod) to move all my music off of my video ipod to a new computer. Yamipod converted all of my music file names to read "album name - artist - song name", instead of how iTunes imports music "01 song name". Yamipod also created a sub-folder "1" for each album the artist has in my iTunes music folder.
    For example, when in my iTunes music folder, if I click on Justin Timberlake, it will show the two albums I have "FutureSex" and "Justified". If I click on "Justified" it shows a folder "1" which I have to click on to get to the song which is then named "Justified - Justin Timberlake - Rock Your Body" instead of "06 Rock Your Body"
    When in my iTunes folder, a lot of my music cannot be found (even though it is not technically lost), so I manually have to click through all my iTunes music folders to "re-attach" the file so iTunes can then play the music.
    Here's what I am looking for:
    1. I want to rename all of my music files back to iTunes format of "track # song name" (i.e. 06 Rock Your Body) without manually retyping every song title.
    2. An easier way for iTunes to "find" all of my music instead of me manually pointing to each and every file. I have all the music, I just have to manually show iTunes where each of the 1600+ songs is located, which is a long and tedious process that I do not have the time or patience for.
    I would greatly appreciate any advice on how to manage this without going bonkers.
    Thank you!!

    Well, the one problem you have is that for the "Move" function, the source file input should be wired to the output of the "Build Path" function, not to the duplicate path out of the "List" function. Also, you need to pass the error cluster around with a shift register. Otherwise you will not catch an error that may have occurred during one of the file rename operations.

  • New hard drive issues - need help please!

    So I just installed a new hard drive on my Ideapad S10 and having the following issues.  I get a PXE-E61 : Media test failure check cable & PXE-M0F : Exiting  Broadcom PXE rom message.  I've uninstalled and reinstalled the drive to check the connection and still get the error, it's a brand new drive.  Also I noticed in the BIOS that the hard drive is showing up under ssd disk and SATA hdd shows - none.  If I restore the BIOS settings to original then the drive will show up under ssd but the SATA controller mode will show the AHCI setting instead of the Compatible setting it should use.
    I'm really stuck here and don't know what else to check.  My orginal drive is dead so I'm trying to get this working so I can install windows.  If anyone could help out it would be greatly appreciated - Thanks!

    Full Disclosure:  I don't know your machine.
    That PXE error probably doesn't indicate a problem - or not the problem, anyway.  Your machine boots, doesn't see an operating system on the hard drive (or doesn't see a hard drive at all) and tries to boot over the network and fails. That's what the PXE error is about.
    As to the SATA problems, what happens when you boot your Windows install media?  Does that see a hard drive?
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Serious and Sudden Problem with Z10 NEED HELP PLEASE

    I have a z10, one of the first that came out in Toronto (if it makes a
    difference), a couple of hours ago I came across a serious and sudden
    problem.
    I was able to swipe left and right between pages of apps, even drop down
    from the top, but I cannot open anything, not even make a call or settings
    options.
    Any time I try to, for a split second it looks like its about to load
    something then nothing. (image slides to the right quickly and goes back on
    every attempt)
    So I first did a reset, same problem, then I did a battery pull (about 15 minutes) and problem presisted.
    I tried through USB to do a backup on blackberry manager and perhaps do a
    re-install of everything, however when I was prompted for the password of
    my device on my PC it kept telling me it was an incorrect password (I use
    this blackberry on my computer 4-7 days a week, twice a day sometimes for a
    year and I have never miss typed my password nor have i changed it)
    After trying everything to make sure the first letter maybe was upper/lower
    case, even my other possible phone password, nothing worked..
    On the 5th failed attempt my phone prompted me to type 'blackberry', which
    i did, then i typed my password on my phone which i type in about 15 times
    a day becuase I set my phone to a 5 minute lock and still said it was incorrect.... I am no on 9/10 attempts and lost
    for options.
    Please if anyone can give me any suggestions, or even how to backup my phone
    and whipe it now, or I have an earlier backup form 4 months ago that I
    wouldnt mind going back to in worst case scenario.
    Thank you for your help in advance,
    Solved!
    Go to Solution.

    Sorry, no I haven't experienced that. It could be from an app you downloaded but that's just a guess. Wiping the device will tell us a lot. If the device still doesn't work you'll want to reload the OS using BB Link. if it still doesn't work after that then warranty support will be necessary through Rogers.
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • TS1363 my ipad is disabled its not showing key pad and not connecting with itunes need help

    ipad is disabled and not connecting with itunes

    1: Connect the device to your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    3: If the device doesn't appear in iTunes, try using the steps in this article to force the device into recovery mode.

  • How come I can't put music on my ipod? I already have a fair amount of music on my ipod but I have enough space for more. I am using a new computer with itunes and it is telling me if I wasnt to put the new music on my ipd i need to erase my ipod HELP!

    How come I can't put music on my ipod? I already have a fair amount of music on my ipod but I have enough space for more. I am using a new computer with itunes and it is telling me if I wasnt to put the new music on my ipd i need to erase my ipod HELP!

    Because you can only synce with one iTunes library and you are switching libries by using the new computer. To nake this yyour syncing computer:
    - Move all the media(apps, music, synced video and photos etc) to the new computer.
    - Connect the iPofd yo the computer and bake a backup fo the iPod by right clicking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup.
    Note that the backup that iTunes makes doe not include media.
    To move mdia to the new computer see:
    iTunes: How to move your music to a new computer
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer

  • I had a problem with my itunes so i had went on itunes website and reinstall itunes for windows and after it complete it said that the feature yoy are trying to use is on a network resource that is unavailable i need help please!!!!!!!!!

    had a problem with my itunes so i had went on itunes website and reinstall itunes for windows and after it complete it said that the feature yoy are trying to use is on a network resource that is unavailable i need help please!!!!!!!!!

    first, head into your Add/Remove programs and uninstall your QuickTime. if it goes, good. if it doesn't, we'll just attend to it when we attend to itunes.
    next, download and install the revo uninstaller http://http://www.revouninstaller.com/revo_uninstaller_free_download.html. use it to clear any existing itunes and/or QuickTime installation configuration information from the PC.
           next download itunes. it worked for me hope this is helpful!!
        oonce you get into the revo uninstallergo thru to delete itunes hit uninstall on the itunes icon then you will go thru to it will tell u the same nmessage about the feature and network hit cancell then go thru and hit scan (make sure bthe advance scan button is pushed) this will take awhile but go thru the list and hit everything associated with itunes. hit delete then install itunes again. it worked for me hope it works for you!

Maybe you are looking for

  • Trouble printing to video HDV

    We've changed the MacOS for 6.3 version and the final for 7.0 version. It's an Imac. When now I shoot to tape (sony HVR 1500) an HDV108050i sequence the stream brakes. It seems the flow is not continuous.The image distort, go out, go in, TC jump. ( w

  • Navigate to custom views in PDF using C#

    Dear Team, I have a PDF file with many custom views . Its having a page only . But its having lots of view.  its customized pdf file. It has tool bar  to select the views. now i want to control the views drop down in tool bar using c# . Is it  possib

  • Column view in Finder does not display image dimensions

    Image dimensions display a -- when browsing in column view. If I view info on the image it appears. If I move off the highlighted image file and go back it disappears again. I have looked into the spotlight solution and do not have any folders listed

  • Web Gallery does'nt stop updating & exporting

    Everytime I click on the Web button, Lightroom sems to go directly ( without any possibility for me to re-arrange my photos position or new photos ) to updating / uploading mode! Is there a way to have this 'web' function stop so I can decide what ge

  • Every time I download an update I have to get the full 1.8Gb program!! Is it right?

    Is it right? There must be something wrong!! First it downloads the 300Mb upload, fails to upgrade and goes on to download the full monty! With our British Telecome Victorian time telephone lines it takes all night and part of the day and it copes wi