I'm running into a problem with my iTunes

I recently downloaded the new iTunes update, but my family decided to do a system restore to a day earlier. My iTunes wouldn'y open, so I tried to re-download it. It worked, but now my iTunes is blank and thinks it's on a different computer. So now when I try to sync my 2nd Gen. iPod Touch, it wants to erase all my CD ripped songs and delete my Apps.

Use the add to library function again, but just point the application to the iTunes library on the computer rather than the DVD backup.

Similar Messages

  • I've run into a problem with my trail version of Adobe Premier 13, and it appears to be a major one.

    I’ve run into a problem with my trail version of Adobe Premier 13, and it appears to be a major one. Here’s what happened.  Yesterday when I turned on the computer, I got a prompt asking if I wanted to link my Adobe Lightroom with Adobe Premier.  I “x’d” the prompt but then the computer went into a “do not turn off” mode.  45 minutes later the computer was still prompting me not to turn it off. Thinking that the computer was hung up I did turn it off.  Then I turned it back on, went to Adobe Lightroom to discover that all my work from the past three-to four years had disappeared. 
    At this point I am afraid to mess with Adobe Premier, so it’s still on my computer.  I used Windows 7, Photoshop CS3 and Lightroom 4.  Do you think if I uninstalled my trial version of Adobe Premier 13, my work on Lightroom would return?  Or is it lost?
    Thanks to any who offer suggestions. 
    Bert Gildart

    Bert Gildart
    I was unaware that you could establish any direct linkage between Lightroom and Premiere Elements. Are you sure that the association was to be for  Photoshop CS3 and Lightroom?
    Have you tried to do a System Restore to a point before you installed Premiere Elements 13 or before you OK'd whatever this Lightroom linkage was?
    Have you asked your question in the Adobe Lightroom Forum, asking about recovery of work lost from Lightroom? Have you found any traces of your lost Lightroom work in the Recycle Bin?
    ATR

  • I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solveby myself? (Mountain Lion, Mavericks, Yosemite?)

    I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solve by myself- a person with limited problem solving abilities. (Mountain Lion, Mavericks, Yosemite?)

    It will make it easier to help you w/ your problem to know the  size and RAM installed.
    "Yesterday I couldn't update the maps on my Garmin because it said the OS I had wouldn't work"
    What OS will your Garmin work with? Funny there was someone else that did that and upgraded to Yosemite and regretted it.
    I'd say Lion if your Garmin is compatible.
    Both Lion and Mountain Lion are downloadable from the Apple Store:
    http://store.apple.com/us/product/D6106Z/A/os-x-lion
    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    The OSs will get more resource hungry the higher you go.

  • When I plug my iPhone 4s into my PC, I get an error message that says iTunes needs a newer version of Apple Mobile Device Support. It wants me to uninstall both the AMDS and iTunes and then reinstall iTunes. Has anyone else run into this problem recently?

    When I plug my iPhone 4s into my PC, I get a message that says iTunes needs a newer version of Apple Mobile Device Support. It wants me to uninstall both the AMDS and iTunes and then reinstall iTunes. iTunes won't recognize my phone and so I can't synch it. Has anyone else run into this problem recently and how did you resolve it? Thanks!

    Thank you both. I suppose I should have prefaced my question with the concern that I've read a number of other posts from people who have had a similar issue and when they tried to follow the directions, they ran into a multitude of other problems. As you might imagine, I'm hoping to avoid the creation of new problems as I try to solve this one. Thanks again.

  • I am trying to use the brightness adjustment on a grayscale photoshop CS6 file.  The preview shows the adjustment working and changes the brightness, but when you click to apply the change, it does not apply the adjustment.  I have run into this problem b

    I am trying to use the brightness adjustment on a grayscale photoshop CS6 file.  The preview shows the adjustment working and changes the brightness, but when you click to apply the change, it does not apply the adjustment.  I have run into this problem before, although rarely, with some other files over the years and with earlier versions of CS.  I would like to know how to overcome this problem?

    Make sure you are viewing your image at 100%. At smaller views, pixels and layers and the way they interact are approximate interpolations and won't show you the actual pixel-for-pixel changes.

  • Encoder keeps running into a problem and closes adobe premiere pro down too.

    Hello, i have be trying to open my Encoder but for some reason it keeps running into a problem and closing on me and has a time or two closed down my adobe premiere pro down too. What is happening?

    Hi. I have the same problem using an HTC Incredible Android smartphone. The video/audio not in sync. Slight advance or delay. Not matching. I have the phone set to record as mp4, but when I use the file it says 3gp, so I transcode it to mp4. I have filmed a lot with my smartphone and now I have all this footage for over 6 months that may have this problem so I seriously need to know how to fix this or I have a ton of bad footage showing me in frame talking and it's not going to be right for YouTube videos of selfie-vlogging. So, I need to know the best, most fool-proof, most efficient, time-saving way to process and make it workable without taking too much time. Please share the very best methods which work 100% of the time. Thanks, JR
    Message was edited by: XXJR2013XX

  • Sun's JDBC Tutorial. Run Into a Problem

    im working through suns JDBC tutorial but ive run into a problem. when i try to run the application i get a whole lot of exceptions. heres my class for working through with the tutorial:
    package JavaPhonebook;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class JDBCTutorial{
        public static void main(String[] args){
            Connection con;
            Statement stmt;
            ResultSet srs;
            try{
                Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
                con = DriverManager.getConnection("jdbc.derby.COFFEES");
                stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
                srs = stmt.executeQuery("SELECT COF_NAME, PRICE FROM COFFEES");
                while(srs.next()){
                    String name = srs.getString("COF_NAME");
                    float price = srs.getFloat("PRICE");
                    System.out.println(name + " " + price);
            }catch(ClassNotFoundException ex){
                ex.printStackTrace();
            }catch(SQLException ex){
                ex.printStackTrace();
    }when i run it i get these exceptions:
    java.lang.ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver
            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Class.java:169)
            at JavaPhonebook.JDBCTutorial.main(JDBCTutorial.java:30)Message was edited by:
    Alex1989

    Do you know what a classpath is?nope
    Well this (classpath) is the crux of your problem.
    How are you running this program? In netbeans.
    well i registered java db by going to tools ->
    options -> advanced options -> ide configuration ->
    server and external tool settings -> java db database
    and then choosing the java db location and database
    location... this seems to be something netbeansy.
    But this did not answer my question really.
    All I can tell you is that you need to have all the directories and/or jarfiles your program needs to run in your runtime classpath. Runtime as opposed to compile time. I suspect that this "registration" process of which you speak is related to your compile-time classpath but either not your runtime classpath or you are not running in Netbeans.

  • In iTunes the iPhone device icon will not show up whenever I plug in a USB into my PC but the iPhone icon will show up in 'This PC'  so if anyone who knows a resolution to my problem with my iTunes or PC,it would really help me.I need at least Help or Tip

    In iTunes the iPhone device icon will not show up whenever I plug in a USB into my PC but the iPhone icon will show up in 'This PC'  so if anyone who knows a resolution to my problem with my iTunes or PC,it would really help me.I need at least Help or some Tips.I have already tried many things to iTunes and my PC like trying to restore my PC but that do anything.Also,would it be fine if i contacted (call) Apple Support? Please,I need help because what I think is wrong is my PC,iPhone,or USB might be messed up so if anyone could help me with this,it would be really helpful and for anyone to be nice enough to help me.

    I think this article will help you.

  • I have a problem with the iTunes Store, I have an ipod and an iphone 2. I have a PC with Windows Vista Home Premium 2007, entering into iTunes Store on the main screen I get only AppStore, Podcast and iTunesI have a problem with the iTunes Store, I have a

    I have a problem with the iTunes Store, I have an ipod and an iphone 2. I have a PC with Windows Vista Home Premium 2007, entering into iTunes Store on the main screen I get only AppStore, Podcast and iTunes U. In my screen I get only ipad2 Podcast, iTunes U Downloads. My problem is I can not access any application to download music, videos, books, etc..
    ITunes will be installed wrong or what should I do to activate these options?

    Go to the front page of the Store, and click Change Country.  Make sure it is set to the country where you actually are. 
    Then you will be able to see everything that is for sale in your country, which, depending where you live, might or might not include music.

  • Has anyone run into the problem of downloading or opening an E.pdf file? I am running on 10.6.8 and am unable to open the file. Any suggestions?

    Has anyone run into the problem of downloading or opening an E.pdf file? I am running on 10.6.8 and am unable to open the file. Any suggestions?

    That crash appears to be casued by the Facebook plug-in.
    Create a new account (systempreferences -> accounts or Users & Groups on 10.7 and 10.8), make a new Library in that account, import some shots  and see if the problem is repeated there. If it is, then a re-install of the app might be indicated. If it's not, then it's likely the app is okay and the problem is something in the main account.

  • When installing Oracle9i I run into a problem on the 3rd CD

    I am installing Oracle9i and on the third CD I am running into a problem. When the Configuration Tools are downloading, I am not able to download the "Oracle Database Configuration Assistant." It says that the SID I have created (during installation of the first CD) is already in use. How do I go about changing the SID I picked???? Does anyone know???

    Bert Gildart
    I was unaware that you could establish any direct linkage between Lightroom and Premiere Elements. Are you sure that the association was to be for  Photoshop CS3 and Lightroom?
    Have you tried to do a System Restore to a point before you installed Premiere Elements 13 or before you OK'd whatever this Lightroom linkage was?
    Have you asked your question in the Adobe Lightroom Forum, asking about recovery of work lost from Lightroom? Have you found any traces of your lost Lightroom work in the Recycle Bin?
    ATR

  • Problem with my itunes - programme path cannot be found - can't uninstall

    Hi I was wondering if anyone can help me...
    I've got a problem with my itunes and I'm at a loss as to what to do!
    I recently went to open itunes and as I did a message came up to say that itunes has not been properly installed and that if I want to burn cds etc, itunes needs to be properly installed. Firstly I don't understand why this message has come up as I have barely been on itunes over the past few weeks, in fact I've barely been on my laptop full stop. Secondly, when I have gone into control panel and then gone to repair itunes it says that itunes64msi path cannot be found, itunes is supposedly stored under my user and under 'app data' which is nowhere to be seen on my computer at all. I then tried to uninstall the programme completely and the same message came up. I then downloaded the newest version of itunes on the apple website but that couldn't be properly installed as there is already itunes on my system. I've also tried to remove the programme whilst in safe mode but haven't had any success.
    SO confused as to what's gone on, don't understand how itunes is still a programme on my computer but appears to be wiped from my computer at the same time.
    I'm running on a windows 7 64 bit operating system and if anyone could help me I'd be so so grateful!!

    Hi PoppyClaire,
    If you are having issues uninstalling and reinstalling iTunes on your Windows machine, you may find the following article useful:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Cheers,
    - Brenden

  • How do I fix this problem with my iTunes?

    I've been having problems with my iTunes for over a week now - since I tried to update to iOS 5 - and I've tried everything. I've had to uninstall iTunes multiple times and each time I have reinstalled it, there has been some form of error, the list seems endless. Today, I managed to get an older version to succeessfully install but when I tried to update to the newest version, this is what appeared on my screen after the 'install.'
    "The procedure entry point AVCFAssetCreateWithByteSystemAndOptions could not be located in the dynamic link library AVFoundationCF.dll"
    Any idea what this means, and/or how to resolve it?

    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, does your device connect without that message now?

  • Problem with my itunes program

    i have a ipod shuffle and i have a big problem with my itunes program, he refuse to read cd so i cant put music on my ipod anymore. please help me with that cause now my ipod has become completly unusable.

    Im able to download the setup but it keeps on giving this message: there is a problem with this windows installer package. a program required for this  install this to complete could not be run
    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • HT4623 Trying to do an IOS upgrade on my Ipad 2.  It was running, then came up with an Itunes icon and is just sitting there.  I'm not sure what I need to do to get my Ipad back

    Trying to do an IOS upgrade on my IPAD 2. It was running then came up with an ITUNES icon and just sits there.  How do I complete this upgrade and get my IPAD back??

    It sounds like it's gone into recovery mode. How were you trying to update it, directly on it of via your computer's iTunes ? If directly on it then have you tried conencting it to your computer's iTunes ?

Maybe you are looking for