Trouble updating from 7.0.1 to 7.0.2

I have downloaded and upgraded to 7.0.2 on my MacBook Pro 2Ghz intel core duo several times. the problem is . . . It still shows that I have version 7.0.1 and my wife's iPod won't work with that.
If I select "check for updates" from the iTunes menu it says ver 7.0.2 is available and I select to download it,but alas it comes back and says, iTunes software up to date.
Any suggested fix actions?
john

Did you move iTunes 7.0.1 to another location?
iTunes 7.0.2 will install in the Applications folder.
if you previously moved iTunes 7.0.1, that one could be launched, which could explain iTunes still tells you it's version 7.0.1.
M

Similar Messages

  • HT4561 Has anyone had trouble updating from 10.6 install discs to the combo 10.6.8 v1.1 using software update?

    I've been having all manner of issues with my system, seemingly out of the blue. I just had a third party install a new HDD for me, and I used my snow leopard install disc (the one I bought many years ago, right after it launched), and when I tried to run the software update and install four updates all together, I got a notice that the file didn't download properly and may be corrupted. I'm wondering if this could have caused my system crash after the last clean install.
    I'm downloading manually instead of using whatever is in software update just to be safe this time, but I was wondering if anyone had a similar experience?

    It's interesting that you were connected via ethernet yet still had a similar issue. I wonder if perhaps our hardware issues that prompted the clean install may have been similar?
    When I attempted to run software update again, it seemed to think that it had completed the download for the 10.6.8.v1.1 update, even though it listed it at over 1Gig, and had "completed" after mere seconds. I know my wifi setup isn't THAT good, and even if it were, I've never seen a wireless connection allow for download speeds of that magnitude.
    I wonder if there is something missing from the original install discs that causes trouble with network connectivity? This is conjecture, I really don't have a solid working knowledge of the Mac OS X network tools. When i downloaded the intaller package from the website it seemed to resolve all my issues.
    My clean install was done on a brand new HDD with a new partition, my unit seems to be functioning normally (for) now. Fingers crossed...I'm a teacher and my system crashed the day before labour day, taking with it a LOT of things I had prepared, and not backed up due to my foolish weekly backup schedule on Time Machine.
    Thanks all for the suggestions and the help, interesting things to discuss!

  • HT1338 Trouble UPDATING from Mac OS X 10.5.8.

    I have Mac OS X 10.5.8. I need to upgrade to Snow Leopard. It says I need to be updated to Mac OS X 10.6 to upgrade to Snow Leopard. When I try to update, it says I am already up to date. What gives?

    You can purchase Snow Leopard contact Customer Service: Contacting Apple for support and service. The price is $19.99 plus tax. You will receive physical media - DVD - by mail.
    Third-party sources for Snow Leopard are:
    Snow Leopard from Amazon.com
    Snow Leopard from eBay
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store.

  • Trouble updating from Firefox 3.0.12 to Firefox 3.6

    I am having trouble upgrading my Firefox application from 3.0.12 to 3.6. I have downloaded 3.6 and when I drag the icon into my applications folder it asks if I would like to replace the current version. I click replace and then a message comes up saying I have insufficient privileges so it cannot be replaced.
    I don't know how I could have insufficient privileges as I am the admin on my computer and the only one who uses it.
    How do I gain sufficient privileges or how can I get around this problem?

    Thanks James for your reply, but I am installing it according to those directions, but it is still saying "The operation cannot be completed because you do not have sufficient privileges for some of the items" so I can't even get past the point of dragging the icon onto my hardrive.
    I am getting very frustrated as many of the websites I use on a daily basis for my work are now not working properly as I need to upgrade Firefox.
    Someone please help!

  • I have 2 App Store accounts, one from MobileMe time and i want to know if it is possible to merge them as i'm having troubles updating some of my software?

    I have 2 App Store accounts, one from MobileMe time and i want to know if it is possible to merge them as i'm having troubles updating some of my software?
    I have to sign in and out between one and the other constantly and i dont know what to do anymore becouse now i can't update software on either, it keeps on poping up "To update this application, sign in to the account you used to purchase it." and im pretty sure im on the right account.

    Sorry. Apple's policy states that accounts cannot be merged > Frequently asked questions about Apple ID
    Contact Apple for assistance > Contacting Apple for support and service

  • HT1222 Having trouble updating to  11.1 on my iPhone 5 and I can't download any music from iTunes to my iPhone because it says I don't have 11.1

    Having trouble updating to  11.1 on my iPhone 5 and I can't download any music from iTunes to my iPhone because it says I don't have 11.1? How can I update iTunes on iPhone?

    You update iTunes on your computer to 11.1.

  • Trouble updating a JtextArea from a JTable ListSelectionListener..

    Hi, I'm having trouble updating a JtextArea from a JTable ListSelectionListener, it is working for another JTextArea but I have created JNMTextArea which extends JTextArea and I am getting no data passed to it.
    Any help is really greatly appreciated. Im a relative newbie to Java.
    Here is the class declaration for JNMTextArea
    public class JNMTextArea extends JTextArea
         //Constructor
         public JNMTextArea(String text){
              super(text);
              setLineWrap(true);
              setEditable(false);
         //Constructor
         public JNMTextArea()
              this(new String());
         //This sets the data in setText, works ok.
         void displayPacket(Packet p){
              //Function works fine
              //Need to pass this data to the JNMTextArea!!!
              setText(buffer.toString());
              setCaretPosition(0);
    Here is where I use JNMTextArea, Im
    class JNMGui extends JFrame implements ActionListener, WindowListener{
         public static JNMTextArea txtPktContent;
         //Constructor
              JNMGui(){
                   buildGUI();
         private void buildGUI(){
         mainWindow = new JFrame("Monitor");
         tblPacket = new JTable(tblPacketM);
         tblPacket.setToolTipText("Packet Panel");
         tblPacket.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
         if (ALLOW_ROW_SELECTION) {
              ListSelectionModel rowSM = tblPacket.getSelectionModel();
              rowSM.addListSelectionListener(new ListSelectionListener() {                     public void valueChanged(ListSelectionEvent e) {
                        if (e.getValueIsAdjusting())
                             return;
                        ListSelectionModel lsm =      (ListSelectionModel)e.getSource();
                        if (lsm.isSelectionEmpty()) {
                             System.out.println("No rows are selected.");
                        else {
                             int selectedRow = lsm.getMinSelectionIndex();
                             selectedRow++;
                             String str;// = "";
                             //Unsure if I need to create this here!
                             txtPktContent = new JNMTextArea();
                             //This works perfectly
                             txtPktType.append ( "Packet No: " + Integer.toString(selectedRow) + "\n\n");
                             Packet pkt = new Packet();
                             pkt = (Packet) CaptureEngine.packets.elementAt(selectedRow);
                             if(pkt.datalink!=null && pkt.datalink instanceof EthernetPacket){
                                  str = "Ethernet ";
                                  //THis works txtPktType is another JTextArea!!          
                                  txtPktType.append ( s );
                                  //This is not working
                                  //I realise displayPacket return type is void but how do get
                                  //the setText it created to append to the JNMTextArea??               
                                  txtPktContent.displayPacket(pkt);
              //Adding to ScrollPane
              tblPane = new JScrollPane(tblPacket);
              txtPktTypePane = new JScrollPane ( txtPktType );
              txtPktTypePane.setToolTipText("Packet Type");
              txtPktContentPane = new JScrollPane ( txtPktContent );
              txtPktContentPane.setToolTipText("Packet Payload");
              panel.add( tblPane, BorderLayout.CENTER );
    //End Class JNMGui

    void displayPacket(Packet p){
              //Function works fine
              //Need to pass this data to the JNMTextArea!!!
              setText(buffer.toString());
              setCaretPosition(0);
    This seems really odd. Notice that you pass in "p" but use "buffer". Where is "buffer" defined?

  • I am having trouble updating minomonsters and I would like to find a way to fix it without erasing all of my data from the app.

    I am having trouble updating minomonsters and I would like to find a way to fix it without erasing all of my data from the app.

    I am having trouble updating minomonsters and I would like to find a way to fix it without erasing all of my data from the app.

  • Trouble updating Lightroom from 3.3 to 3.4

    Since the update to 3.4 first came out officially, I have been trying to update from 3.3.  I download the file, open it, chose the install it into my HD, it goes through the installation process and indicates that it has done so successfully.  However, my Lighroom STILL says 3.3 and occasionally informs me that there is an update available to 3.4. 
    I have tried installing with Lighroom open, closed, restarted, computer restarted, the whole nine yards. 
    Does anyone have any suggestions as to what I could be doing wrong?
    I'm on Mac OSX 10.6.7
    Thank you in advance.

    Boom!   You got it!!!!
    I thought that I had tried this, but remember now that when I went to check , I still had the 3.3 RC and got sidetracked by deleting it and never opened the actual program.   Funny thing is that this has never been the case with a previous update.
    Thanks for your help, Hai!!!!

  • Trouble  updating software from  app store

    I am  getting an error message (error 100) every tie I  try to update  my software updates from the app store.   What is the problem and what do I need to do?

    Many folks are getting these errors. Tel Apple and perhaps they will fix it.
    http://www.apple.com/feedback/macosx.html

  • How can I download an ipod touch update from apple website?

    I am having trouble updating my ipod because when it was updating my cable fell out now i cant get on to my ipod everytime i plugg in my ipod it comes up with "new hardware found" then it continues (recovery mode) however it comes up with
    "no device found" and tells me to insert a disc but i dont have one or other options which also dont work and on one of the bit of advise it says download device software from manufacture but i can't find how you download it.
    Please help
    Thanks

    Here's how to reinstall iTunes:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    Depending on your iPod model and iOS you can also update "Over the Air" by going into Settings/General/Software update. You'll need a Wi-Fi connection to do this and your iPod has to be connected to the adapter.

  • Updates from Apple result in white screen, have to reinstall thru time machine, 4hrs.

    I have a Mac 21.5, OS X Yosemite 10.10.2
    Processor: 3.06 GHz; intel Core i3
    Memory 4 GB 1333MHz  DDR3
    If I do an update from Apple I end up with the White Screen of Death. I restore thru Time Machine and this takes about 4hrs.  I have to turn off,  unplug everything then plug everything back in, power up while holding "shift" "command" "r" and "p", keeping my finger on power button till I get an option screen with 4 choices.  I've found, restore with Time Machine the best choice.  It takes two people to hold the keys and power up.  I don't know why this happens, hoping for some ideas.  There has to be an easier and faster way to restore. I currently have an update pending, 10.10.3, I just did 10.10.2 Saturday (04-11-15) and had to go through all of the above to get update and eliminate "white screen" to restore. 

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    The test works on OS X 10.7 ("Lion") and later. I don't recommend running it on older versions of OS X. It will do no harm, but it won't do much good either.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of it have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message. See, for example, this discussion.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a general summary of what you need to do, if you choose to proceed:
    ☞ Copy a particular line of text to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    These are not specific instructions; just an overview. The details are in parts 7 and 8 of this comment. The sequence is: copy, paste, wait, paste again. You don't need to copy a second time.
    5. Try to test under conditions that reproduce the problem, as far as possible. For example, if the computer is sometimes, but not always, slow, run the test during a slowdown.
    You may have started up in "safe" mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. Load this linked web page (on the website "Pastebin.") The title of the page is "Diagnostic Test." Below the title is a text box headed by three small icons. The one on the right represents a clipboard. Click that icon to select the text, then copy it to the Clipboard on your computer by pressing the key combination command-C.
    If the text doesn't highlight when you click the icon, select it by triple-clicking anywhere inside the box. Don't select the whole page, just the text in the box.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Click anywhere in the Terminal window to activate it. Paste from the Clipboard into the window by pressing command-V, then press return. The text you pasted should vanish immediately.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. If you don't know the password, or if you prefer not to enter it, just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, a series of lines will appear in the Terminal window like this:
    [Process started]
            Part 1 of 8 done at … sec
            Part 8 of 8 done at … sec
            The test results are on the Clipboard.
            Please close this window.
    [Process completed]
    The intervals between parts won't be exactly equal, but they give a rough indication of progress. The total number of parts may be different from what's shown here.
    Wait for the final message "Process completed" to appear. If you don't see it within about ten minutes, the test probably won't complete in a reasonable time. In that case, press the key combination control-C or command-period to stop it and go to the next step. You'll have incomplete results, but still something.
    12. When the test is complete, or if you stopped it because it was taking too long, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak for themselves, not for me. The test itself is harmless, but whatever else you're told to do may not be. For others who choose to run it, I don't recommend that you post the test results on this website unless I asked you to.
    Copyright © 2014, 2015 by Linc Davis. As the sole author of this work (including the referenced "Diagnostic Test"), I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • TS2634 I cannot print from my ipad. The wireless is connected, I have no trouble printing from my computer. When the ipad looks for the printer it comes back with the message. "Air printer not found" What can I do to correct this? P S Ipad2 is only 1 mont

    I cannot print from my ipad. It is connected to the wireless okay. I have only had this ipad for a month and while I am not sure I think it has been okay to print before 2 days ago, when I tried to print and I got the message "Airprinter not found" Has anyone experienced this and if so what did you do about it? I have no trouble printing from my computer.

    ... Has anyone experienced this and if so what did you do about it?
    I rebooted my Airport Extreme.
    Try rebooting your router. Make sure its firmware is updated.

  • Help updating from 10.5.8 to snow leopard

    I am having serious trouble updating my mac to snow leopard. I am currently running 10.5.8
    and here is my hardware overview:
    Model Name:          MacBook Pro 15"
      Model Identifier:          MacBookPro2,2
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.33 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          4 MB
      Memory:          2 GB
      Bus Speed:          667 MHz
      Boot ROM Version:          MBP22.00A5.B07
      SMC Version (system):          1.12f5
      Serial Number (system):          W8******W0H
      Sudden Motion Sensor:
      State:          Enabled
    I have the snow leopard CD but when I put this into the Disc drive it spits it back out to me after a few minutes. I then tried to use the CD from an external Disc Drive and I am getting an USB error saying the device is taking to much power and the USB port will be deactivated. I then connected my mac to my friends mac and placed the CD in his disc drive and tried to install snow leopard through his machine. When i click on the install mac osx it tells me that "the application "install Mac OS X" cannot be used from this volume. I then tried the remote install osx but when I restart my machine and hold the option key it does not give me the option to select the start up disc.
    Do i have any further options to install snow leopard
    <Edited by Host>

    Does the disk have any noticeable damage to it?
    Here's Troubleshooting the slot-loading SuperDrive in case you need it.
    DALE

  • IMac will not allow update from Snow Leopard 10.6.3 to 10.6.8

    I am having trouble updating to 10.6.8 from Snow Leopard 10.6.3.
    After down loading the update it goes to load it and then crashes saying it struck a problem.

    The startup disk may need repairing.
    Launch Disk Utility located in /Applications/Utilities to verify and if necessary, repair the startup disk.
    Using Disk Utility to verify or repair disks
    Make sure there's enough free space on the startup disk.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure you always have a minimum of 15% free disk space.

Maybe you are looking for

  • How to add Distribution Group email alias from CSV in office 365

    Hello Forum! Hope someone can help me troubleshoot this or even let me know if its not possible. But, I used powershell to import distribution groups and set primary emails in Office 365. That worked great, but we have two domains and i would like to

  • XSLT processor help

    Hi , my expected out put is .. <AA>200</AA> <AA>150</AA> <AA>300</AA> <BB>650</BB> <AA>50</AA> <BB>50</BB> my xsl logic: <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > <xsl:output  method="xml" indent="yes" omit-xml-

  • Trackpad's button woes

    My button has been giving double clicks in a sporadic fashion for some time. However, it has really gone haywire in the past few days. It got so bad that no only did it clicked 2 times whenever it was pressed, but it locked in after a click. It was s

  • External website in a tabset? Similar to frames? iframe?

    Does anyone know how you can display an external website within a single tab of the tabset component? Thanks, Brent

  • HT201263 Turn on Problem

    hey , i have a problem .....my iphone 4s wont turn on ....the only thing that happens when i turn it the apple logo shows but when it goes to the next level to loading the system the logo has a break down and turns off so i cant restore the iphone ev