Downloaded, but wont run!!!

I recently downloaded the new version of iTunes and once i clicked run, a box came up with 'windows installer' information i clicked ok and nothing happened, and no matter how many times i try it just doesnt seem to launch the process of installation. Any suggestions would be greatly apprecaited

Hi.
I had a similar issue, see my post on this topic: http://discussions.apple.com/thread.jspa?threadID=910130&tstart=15
Good luck!
Diego

Similar Messages

  • What do you need to do to get your pictures back after you just restored your phone? it says "downloading" but wont give me any of my pictures back that i took awhile ago

    what do you need to do to get your pictures that you took awhile ago back on your iphone 4s after you just restored your phone it? it says "downloading" but wont give me any of my pictures back that i took awhile ago. I backed everythign up at the apple store while the person who helped me watched me do it. i have 1,796 pictures i took before i restored my phone, but it wont let me see them. it just says "downoading" and i will be devestated if all of my pictures are gone. please help me!

    You would have received a prompt telling you that you didn't have sufficient space to beck up your phone if that was the case.  Also, not everything on your phone is stored in the backup so you wouldn't need 11.7GB to back it up.  You can see the size of your backup by going to Settings>iCloud>Storage & Backup>Manage Storage, tap the name of your phone under Backups and look under Options.
    If it says "downloading" it's probably still downloading your pictures from iCoud.  Check Settings>iCloud>Storage & Backup at the bottom to see the status of the restore process.

  • I tryed to download a movie off of itunes and it downloaded but wont sync into my ipod

    i downloaded a movie off of itunes and it downloaded but wont sync it says the ipod is synced with another itunes library do you want to erase this ipod and sync with this itunes library .an ipod can be synced with only one itunes library at a time erasing and syncing replaces the contense of this ipod with the contense with this itunes library does that mean that if i sync the movie it will erase everything on the ipod and only put the movie and if it does can i put it back on with the movie still on it

    You can do it by manually managing music and videos. See:
    iOS: Issues syncing content with multiple computers using iTunes
    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar.
    To sync to your iPod go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device>Set up Syncing>Sync your device manually and follow the instructions

  • Flashplayer seems to download but wont work ! How can I fix this ?

    Flashplayer seems to download but wont work ! How can I fix this ?

    Moved to Installing Flash Player.
    Recommended Links to Windows Installers
    Please try installing from the appropriate stand alone Windows installers located here:
    Installation Problems - Flash Player - Windows
    http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header
    Direct Links to Windows Installers
    Flash Player for ActiveX (Internet Explorer)
    http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player_ax.exe
    Flash Player Plug-in (All other browsers)
    http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player.exe

  • Downloaded Adobe Download Assistant to download CS6 Master Collection but wont run

    I tried saving it in my downloads folder and my desktop. Whenever I try to run the program  AdobeDownloadAssistant, a loading bar appears that says "Installing Adobe Download Assistant. Please wait." and the bar never moves and it stays like that indefinitely. I am running windows 7 64bit. I'm not sure why it's already been downloaded, but won't execute beyond this point.

    Are you able to run any other Adobe AIR applications successfully?  You may want to review Troubleshoot AIR installation | Windows - http://helpx.adobe.com/air/kb/troubleshoot-air-installation-windows.html.

  • Code compiles but wont run

    Hi,
    My prgram was working fine until I added some database stuff to it, now it will compile but it wont run, heres my relevent code:
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.sql.*;
    public class DisplayController extends JFrame 
         public JTextField txtTime, txtInterest, txtAmount;
         public JLabel lblTotal;
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/Money?user=root&password=root";
         private Connection conn;
         private Statement stat;
         public JComboBox accountList;
         Vector vector1 = new Vector();
         ButtonHandler theButtonHandler = new ButtonHandler(txtTime, txtAmount, txtInterest, lblTotal);
       // set up GUI
       public DisplayController()
          super( "Goon Money Manager " );
          JTabbedPane tabbedPane = new JTabbedPane();
              /* sets up the transactions window and adds
                   it to the tabbedPane,this is where all the
                   transactions for all the accouns are displayed.
         try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT heading1 FROM demo");
                   while(rs.next()) vector1.add(rs.getObject(1));
              catch(SQLException sqlException)
                   System.exit(1);
              catch (ClassNotFoundException classNotFound)
                   System.exit(1);
              }

    thats exactly what I put in... what else can I do so I can see whats going on? Here's the entire code in case you need it:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.util.*;
    import java.sql.*;
    public class DisplayController extends JFrame 
         public JTextField txtTime, txtInterest, txtAmount;
         public JLabel lblTotal;
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/Money?user=root&password=root";
         private Connection conn;
         private Statement stat;
         public JComboBox accountList;
         Vector vector1 = new Vector();
         ButtonHandler theButtonHandler = new ButtonHandler(txtTime, txtAmount, txtInterest, lblTotal);
       // set up GUI
       public DisplayController()
          super( "Goon Money Manager " );
          JTabbedPane tabbedPane = new JTabbedPane();
    /* sets up the transactions window and adds
         it to the tabbedPane,this is where all the
         transactions for all the accouns are displayed.
          try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT accountName FROM Money");
                   while(rs.next()) vector1.add(rs.getObject(1));
              catch(SQLException sqlException)
                   System.exit(1);
                   sqlException.printStackTrace();
              catch (ClassNotFoundException classNotFound)
                   System.exit(1);
                   classNotFound.printStackTrace();
          JTextArea mainWindow = new JTextArea(600,300);
              accountList = new JComboBox(vector1);
              JPanel displayTabPanel = new JPanel(new FlowLayout());
              displayTabPanel.setLayout(new FlowLayout() );
              displayTabPanel.add(accountList);
              displayTabPanel.add(new JScrollPane(mainWindow));
              tabbedPane.addTab("Transactions",null,displayTabPanel,"Transaction List");
              accountList.addListSelectionListener(
              new ListSelectionListener()
                   public void valueChanged(ListSelectionEvent event)
                        try
                             ResultSet resultSet = stat.executeQuery("SELECT * FROM demo");
                             StringBuffer results = new StringBuffer();
                             ResultSetMetaData metaData = resultSet.getMetaData();
                             int numberOfColumns = metaData.getColumnCount();
                             for(int i = 1; i<=numberOfColumns; i++)
                             results.append(metaData.getColumnName(i) + "\t");
                             results.append("\n");
                             while (resultSet.next())
                                  for(int i = 1; i<= numberOfColumns; i++)
                                  results.append(resultSet.getObject(i) + "\t");
                                  results.append("\n");
                        catch(SQLException sqlException)
                             JOptionPane.showMessageDialog(null,sqlException.getMessage(),
                             "Database Error1", JOptionPane.ERROR_MESSAGE);
                             System.exit(1);
         );//end anonymous inner class
    /* sets up a savings planner to
         calculate various saving senarios
          JComboBox weekMonthYear;
              JLabel amount = new JLabel("Amount         ");
              JLabel time = new JLabel("Time               ");
              JLabel interestRate = new JLabel("Interest Rate");
              JLabel total = new JLabel("Total");
              JButton calc = new JButton("Calculate");
              JPanel top, panAmount, panTime, panTotal, panCalculate;
              JPanel panInterest = new JPanel();
              JPanel container1 = new JPanel();
              String comboNames[] = {"Weekly","Monthly","Yearly"};
              container1.setLayout(new BoxLayout(container1, BoxLayout.PAGE_AXIS));
              weekMonthYear = new JComboBox(comboNames);
              top = new JPanel();
              top.setLayout(new FlowLayout());
              top.add(weekMonthYear);
              panAmount = new JPanel();
              panAmount.setLayout(new FlowLayout());
              panAmount.add(amount);
              txtAmount = new JTextField(7);
              panAmount.add(txtAmount);
              panTime = new JPanel();
              panTime.setLayout(new FlowLayout());
              panTime.add(time);
              txtTime = new JTextField(7);
              panTime.add(txtTime);
              panInterest.setLayout(new FlowLayout());
              panInterest.add(interestRate);
              txtInterest = new JTextField(7);
              panInterest.add(txtInterest);
              panTotal = new JPanel();
              panTotal.setLayout(new FlowLayout());
              panTotal.add(total);
              lblTotal = new JLabel();
              panTotal.add(lblTotal);
              panCalculate = new JPanel();
              panCalculate.setLayout(new FlowLayout());
              panCalculate.add(calc);
              container1.add(top);
              container1.add(panAmount);
              container1.add(panTime);
              container1.add(panInterest);
              container1.add(panTotal);
              container1.add(panCalculate);
              tabbedPane.addTab("Savings Planner",null,container1,"Test Savings Senerios");
              JPanel budgetTop, budgetBottom, budgetMain;
              JList budgetList;
              JButton addBudget;
              JTextField txtAddBudget;
              budgetMain = new JPanel();
              budgetList = new JList();
              budgetList.setVisibleRowCount(10);
              budgetTop = new JPanel();
              budgetTop.setLayout(new FlowLayout());
              budgetTop.add(budgetList);
              addBudget = new JButton("Add Budgeted Item");
              txtAddBudget = new JTextField(20);
              budgetBottom = new JPanel();
              budgetBottom.setLayout(new FlowLayout());
              budgetBottom.add(addBudget);
              budgetBottom.add(txtAddBudget);
              budgetMain.setLayout(new GridLayout(2,1));
              budgetMain.add(budgetTop);
              budgetMain.add(budgetBottom);
              tabbedPane.addTab("Budget",null,budgetMain,"View and Edit your Budget");
          getContentPane().add( tabbedPane );
          setSize( 700, 400 );
          setVisible( true );
       } // end constructor
       public static void main( String args[] )
          DisplayController app = new DisplayController();
          app.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    } // end class DisplayController

  • Mavericks downloaded but wont accept my id /password

    The upgrade has downloaded but will not install with my apple id and password. It is asking for admin details. My account is admin but I am mystified. Can anyone help?

    Ah! Not Mavericks! I'm afraid that you'll need to find the original discs that came with your computer and follow the instructions here -> http://support.apple.com/kb/ph6317.
    Good luck,
    Clinton

  • ITunes will download but wont install on windows 7 64-bit computer.

    I got this computer a few weeks ago and first thing i tried to install was iTunes off of the apple site and it wont install.
    i can download the setup file to my computer and save to my documents but when i right click and click run as administrator, a loading sign will appear for two seconds then disappear... i need iTunes on this computer since it wouldnt install on my old laptop. i've even tried installing on safe mode and nothing. i just want iTunes on my computer.. any help?

    Same issue here and unfortanetly no one yet has an answer...

  • HT1926 latest i tunes downloaded but wont open

    Need to install email etc on my new I phone 5 and am told it needs it needs to be done via my i tunes account but after i have downloaded the latest i tunes software it wont open on my laptop. Any suggestions

    Hello Rlm912,
    Welcome to Apple Support Communities. 
    Take a look at the article linked below, it provides troubleshooting tips that can help you resolve the issue with iTunes quitting upon launch on your iMac.
    iTunes: Troubleshooting issues with third-party iTunes plug-ins - Apple Support
    Ciao,
    -Jason

  • ITunes downloaded but wont instll

    I downloaded iTunes 7.0 but it wont install. I keep getting a message that says it isnt a valid Win32 application. Can anyone help me with this.

    Wih that one, let's first try the following document:
    iTunes for Windows: "Disk is locked" or "iTunes folder cannot be found" when installing or opening iTunes

  • Updater 2005-10-12: Downloaded but not running

    Guys & Girls, bear with me on this...
    I have been stuck with this issue for a few weeks now and originally had raised this issue on the ITunes forum and despite 30 or so postings nobody solved this problem.
    Basically I can download the updater for the Mini (Windows XP) from the website, fine no problem. I then follow the correct instructions by opening the application from my Start Menu. However, when I select the updater nothing happens. No prompt box appears, nothing.
    I have been on a friends PC who downloaded the application for me. It ran perfectly and i connected my Ipod when requested and the software appeared to load. When I got back to my PC the Ipod updated. Nevertheless a couple of days later when I docked my Ipod Mini to ITunes it failed to recognise it again...
    I have just tried transferring my friends downloaded updater folder to my PC, but exactly the same thing happens. It would appear that for some reason my PC is not allowing the Updater to run.
    Most grateful for any ideas???

    Here's where my procastination is a good thing... I was about to upgrade to the latest firmware last week when I stumbled upon green-orange problems here in the forum... And some guy can't play M4As... Now I'm scared of updating to destroy... so I turned off all auto-updates... better to stick to what used to work, no matter how old...
    Meanwhile, try restoring from an earlier update... like last month's... or your iPod CD...
    I'm waiting for things to clear up before even attempting to update...

  • Itunes and quicktime downloads but wont open

    Ok so the other day I turned my cumputer back on and when i turned my cumputer off itunes was working just fine.but when it i turned it back on it wasnt working. So i reinstalled quicktime because everytime i tried to open itunes it said quicktime needed to be installed. So i did so. well that didnt work so, then i uninstalled it all and put it all back on my computer. I have done this a bunch of times and wel its not working and i need itunes. SO PLEASE HELP ME.
    compaq   Windows XP  

    I have error 2378.
    I tried all the fixes (uninstal completely) I've tried installing Quicktime standalone, same error.
    One day my computer installed some windows updates. next time i tried i tunes, it said it couldnt' find RICHED20.dll.
    Tried removing the updates. then tried removing/reinstalling itunes. Everytime I try to run the install package I get "error with package 2378". I tried restoring my system to before the windows updates. No luck.
    HELP

  • When i download Itunes on google chrome it'll download but wont let me set it up. WHat do I do? (Im using Windows XP)

    I have a Windos Xp computer. I was using google chrome so I can download Itunes but when it downloads it doesnt set up it says Network Error. I tried to use Internet Explorer 8 but it doesn't open up. What do I Do?

    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • My firmware has downloaded but wont install the update.

    I recently bought an older macbook, and I went to install updates on it. All but one of them inatstalled. The frimware for some reason will not install. The macbook was purchased in 2009, and is running off of mac os x 10.6.8. im not sure if any of this information is helpful?

    Please enter your Mac's serial number on this page. Please do NOT post it here. You can get your Mac's serial number by clicking on the apple logo at the top left and choosing, About This Mac. Where it says what version of OS X you're running (10.6.8 in your case), click on that. It will rotate between the OS version, the build number of the OS, and your serial number.
    Once you have entered your serial number on that site, then please link to the resulting page here so we can see exactly what model Mac you have.
    Or, hold down the Option key and click on the apple. With the Option key held down, the first choice will instead be System Information. Copy/paste only the top five lines, and the Boot ROM version of the resulting window. Do not include the serial numbers or UUID. This is all we should see here, such as for my Mac:
    Model Name:  Mac Pro
    Model Identifier:  MacPro5,1
    Processor Name:  6-Core Intel Xeon
    Processor Speed:  3.33 GHz
    Boot ROM Version: MP51.007F.B03
    That's enough info for users here to see what model Mac you have. The ROM version is your current firmware level. From there, we can look to see what, if any firmware updates are supposed to be available for your Mac. I ask because the update you're being told to apply my be in error and there really is nothing to apply.

  • App world installed but wont run

    I accidentaly deleted blackberry app world and have since downloaded it again. I can find it in application management but cannot open it to use it or get a thumbnail on main screen. Anyone have any ideas of how to fix this?
    Any help is appreciated!
    Solved!
    Go to Solution.

    Hey Carlykins,
    Welcome to the BlackBerry® Support Community Forums.
    Please review the following article in regards to the BlackBerry App World Icon missing after upgrading to BlackBerry App World 4.0.0.63 to 4.0.0.65: http://btsc.webapps.blackberry.com/btsc/KB29422
    Cheers.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for