I have a 64 bit system running Win 7, but the installation does not recognise the 64 bit download as suitable for 64 bit system.

I am trying to install Itunes on my new Laptop and it is a 64 bit system. I have downloaded the 64 bit Itunes and when I try to install it, the error is that the program is not suitable for 64 bit system.
The same happens for 32 bit download of Itunes.

I have this problem also. I have not had trouble installing any previous version of iTunes. I am mystified why now it is a problem.
Here is the error I get:

Similar Messages

  • I have an iPod touch 4th generation and have tried to connect it to my Sony BDV-E970W blu-ray player. The player does not recognise the iPod. What can I do to fix this?

    I have an iPod Touch 4th gen player and cannot connect to a Sony blu-ray BDV-E970W player. Sony system does not recognise the iPod. Do I need to link the Sony to the net and upgrade the software on the dvd player?

    As the other replier said, contact Sony. It may not be compatible with the iPod.

  • I have bought an Iphone 4 for my daughter from the apple store, I am trying to use a giff gaff sim which has been activated and has credit on it but the phone does not recognise the sim card

    I bought an Iphone 4 for my daughters birthday from the Apple shop, I am trying to use a Giff Gaff sim card which has been activated and has credit on it but the phone keeps giving me the message  "please use a compatable sim"

    Read here:
    http://support.apple.com/kb/HT5014

  • I have PIXMA MG5320 and I am running Win 8. Software cd does not install. I want to scan, but havin

    I have PIXMA MG5320  and I am running Win 8. Software cd does not install. I want to scan, but having trouble.
    I insert USB stick into USB port on the printer.
    I select SCAn and then select USB.  I select  " <i>" key. I do not find any data on the USB stick.
    What gives?
    I cannot install the software  on Windows 8

    Hi jvandal,
    The CD that came with the PIXMA MG5320 does not include Windows 8 drivers and softare, so you would have to download the drivers and software from our website.  Use the following steps to download the drivers and software:
    Go to Canon's Support & Drivers website at:
    http://www.usa.canon.com/cusa/support/consumer
    Enter your model name into the Model Name field, then click GO.
    Select your operating system in the Select Operating System and Select OS Version dropdown lists, respectively.
    Expand the Drivers section by clicking the red triangle.
    Click on the file named MG5300 Mini Master Setup.
    After reading the details and disclaimer, click 'I Agree Begin Download' and save the file to your computer.
    Once the download is complete, double-click the file from its download location to begin the installation.
    Once complete, click the I Decline Go Back to return to the download page.
    Expand the Software section by clicking the red triangle.
    Click on the file named MP Navigator EX Ver 5.0.0.
    After reading the details and disclaimer, click 'I Agree Begin Download' and save the file to your computer.
    Once the download is complete, double-click the file from its download location to begin the installation.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • I would like to run the most secure version of firefox on my computer, but my computer does not meet the system requirements for the latest version

    i would like to run the most secure version of firefox on my computer, but my computer does not meet the system requirements for the latest version. is there a way i can have the security of firefox 8 and still be able to run it on my old computer. i currently an running firefox 3.6. it is a bit slow, but it is functional.

    Currently Firefox 3.6.24 is as secure as Firefox 8.0.1 is. Firefox 3.6.x will continue to get security updates until next spring, although the exact date hasn't yet been determined.
    Which of the system requirements are you lacking? <br />
    Processor wise you're stuck with what you got, but RAM can be upgraded. WinXP is still supported in all versions of Firefox and will be continued to be supported until Windows drops support for WinXP sometime in 2014.

  • Hi, we have a G5 Blade server running OS X 10.5.8 with a dual Fibre Channel card. The OS does not read the card and cannot establish connection to the RAID controller. I have tried to move the card to another port with no luck. Ran all the updated softwar

    Hi, we have a G5 Blade server running OS X 10.5.8 with adual Fibre Channel card. The OS does not read the card and cannot establishconnection to the RAID controller.
    I have tried to move the card to another port with no luck.Ran all the updated software possible. Please can someone advice

    Hi,
    Was the card previously working in that machine? If it was and you have a G5 tower you could try the card in there. Here is a list of Apple fibre cards and cables which show what's compatible with what. http://support.apple.com/kb/HT1769
    The card should appear in the System Profiler under Fibre Channel and PCI Cards.
    All the best
    Beatle

  • The application does not use the  screen and run in the background

    Hi
    I have downloaded a package of j2me Midlet
    from [link] here [link]
    and try to reuse the code
    but I get the following error when running the code:-
    The application does not use the screen and run in the background
    I think the error into one of these two classes
    package main;
    import javax.microedition.midlet.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.io.IOException;
    import java.io.InputStream;
    public class MainMidlet extends MIDlet implements CommandListener {
        private SSGameCanvas gameCanvas ;
        private Command exitCommand ;
        private Player player = null;
        public void startApp() {
      try {
           //   create new game thread
              gameCanvas = new SSGameCanvas();
              gameCanvas.start(); // start game thread
              exitCommand = new Command("Exit",Command.EXIT,1);
              gameCanvas.addCommand(exitCommand);
              gameCanvas.setCommandListener(this);
                Display.getDisplay(this).setCurrent(gameCanvas);
       catch (java.io.IOException e)
                e.printStackTrace();
            try {
                // start sounds
                InputStream in = getClass().getResourceAsStream("/resource/startfly.wav");
                player = Manager.createPlayer(in,"audio/x-wav");
                player.setLoopCount(1);
                player.start();
            catch (MediaException ex)
                ex.printStackTrace();
             catch (IOException ex)
                ex.printStackTrace();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            if (player != null) {
                player.close();
            System.gc();
      public void commandAction(Command command, Displayable displayable) {
           if (command == exitCommand)
                 destroyApp(true);
                 notifyDestroyed();
    package main;
    import java.io.IOException;
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    public class SSGameCanvas extends GameCanvas implements Runnable {
        protected GameManager gameManager;
        protected boolean running;
        private int tick=0;
        private static int WIDTH;
        private static int HEIGHT;
        private int mDelay = 20;
        Form mainForm;
        Display display;
        //private int MaxTime;
        public SSGameCanvas() throws IOException{
            super(true);
            gameManager = new GameManager(5,5,getHeight()-10,getWidth()-10,this);
        public void start() {
                this.running = true;
                Thread t = new Thread(this);
                t.start();
        public void stop() {
            running = false;
        public void render(Graphics g) {
            WIDTH = getWidth();
            HEIGHT = getHeight();
            // Clear the Canvas.
            g.setColor(0, 0, 50);
            g.fillRect(0,0,WIDTH-1,HEIGHT-1);
            // draw border
            g.setColor(200,0,0);
            g.drawRect(0,0,WIDTH-1,HEIGHT-1);
            // draw game canvas
            gameManager.paint(g);
        public void run() {
            while (running) {
                // draw graphics
                render(getGraphics());
                // advance to next graphics
                advance(tick++);
                // display
                flushGraphics();
                try { Thread.sleep(mDelay); }
                catch (InterruptedException ie) {}
        public void advance(int ticks) {
            // advance to next game canvas
            gameManager.advance(ticks);
            this.paint(getGraphics());
    }Edited by: VANPERSIE on Jul 10, 2012 12:26 PM

    Hi Andi,
    Thanks for your reply.
    Yes, I have waited for a while and the result doesn't change.
    The Porblem here is the application is seen started in visual administrator.Only restart brings up the page back.
    Can you please suggest anything.
    Thanks and regards
    Nagaraj

  • I have a 16GB iPhone 3GS. Tried synching my phone through iTunes (11.0.1 I think... on a 2009 Macbook Pro). Now when I connect to iTunes, it says it does not recognise the content on my phone. Is this because my phone (and laptop) are too old?

    I have a 16GB iPhone 3GS. Tried synching my phone through iTunes (11.0.1 I think... on a 2009 Macbook Pro). Now when I connect to iTunes, it says it does not recognise the content on my phone. Is this because my phone (and laptop) are too old?
    Also, when I tried to Restore the settings, an Error Message pops up that says " The iPhone software update server could not be contacted. The requested resource was not found.
    I'm trying to free up space on my phone by removing [literally] thousands of old photos which were originally synched to the phone, because I had forgotten to uncheck the photos button when I synched it ages ago.
    I have also tried synching it on my 24" iMac (running OSX Snow Leopard). But again, when I try restoring the phone through itunes, it says the file is corrupted. It sggests unplugging the device, and then plugging it in again. I have done this numerous times with no success.
    I'm guessing it must be because my phone (and versions of iTunes, and OSX) are all too old.
    Please can anybody help.
    Cheers,
    Dan_nz.

    There are multiple reasons that lead to issue. You should read the troubleshooting guide to get the right solution to solve the issue: iPhone, iPad, or iPod touch not recognized in iTunes for Windows - Apple Support

  • I'm trying to download the trial version of Adobe Illustrator. An error message says that the OS does not meet the minimum system requirements for the installer. 10.6.0 is the minimum required for installation. How do I get my mac to be a 10.6.0 ?

    I'm trying to download the trial version of Adobe Illustrator. An error message says that the OS does not meet the minimum system requirements for the installer. 10.6.0 is the minimum required for installation. How do I get my mac to be a 10.6.0 ? Right now I have a 10.5.8 is there a way to upgrade or something?

    Buy the Snow Leopard retail installer (http://store.apple.com/us/product/MC573Z/A?fnode=MTY1NDAzOA).
    That will take you to 10.6.3.
    If required you can then use the combo updater to get to the latest version, 10.6.8 (http://support.apple.com/kb/DL1399)
    SL system reqmts;

  • I have an I phone 4s and I have many contacts in my phone.  However, whne my phone rings or I receive a text, the phone does not show the name of the contact person only the phone number.  I have checked every setting I can think of ?

    I have an I phone 4s and I have many contacts in my phone.  However, when my phone rings or I receive a message.  The phone does not show the name of the caller.  It only shows the phone number that is calling.  I am sure this is a setting problem, but I have checked every setting I can think of.  Any suggestions??

    If you are a Verizon user try this:
    Open the phone and dial *228. This is a Verizon over-the-air programming number.
    When the system answer press 1 for "Program or activate your phone"
    Wait for the call to disconnect. You should get a prompt stating "Settings updated."
    Double tap the Home button to bring up the recently used apps list at the bottom.  Locate the Phone, Message, and Contacts apps, swiping if necessary, and press and hold until they jiggle then press the red minus sign to stop them.
    Wait a 3-5 minutes.
    Try your phone again and see if it's fixed.

  • HT201303 I tried to update my security questions this morning but got timed out.  Ive just tried to get into my account but the system does not recognise the answers to my question.  How can I rectify this problem please

    I was trying to update my Security Questions this morning but got 'Timed Out' I've just tried again to get into my security settings but the system does not recognise the information I'm putting in. Can anyone tell me how I can correct this problem.  I can still log-in.
    Best wishes

    Welcome to the Apple Community.
    You might try to see if you can change your security questions. Start here, change your country if necessary and go to manage your account > Password and Security.
    I'm able to do this, others say they need to input answers to their current security questions in order to make changes, I'm inclined to think its worth a try, you don't have anything to lose.
    If that doesn't help you might try contacting Apple through Express Lane (select your country, navigate to iCloud help and enter the serial number of one of your devices)

  • Is there another way to close apps other than deleting them from the multitask bar.....I have a small crack in the bottom of my screen and that part of the screen does not recognize the touch.  :(

    Is there another way to close apps other than deleting them from the multitask bar.....I have a small crack in the bottom of my screen and that part of the screen does not recognize the touch. 

    There's generally no reason to be closing them that way at all. The apps you see in the recents bar are just that, apps that you used recently. Most of them are doing absolutely nothing. The only apps that are really doing anything in the background are ones that play music and ones that are using location services. Just leave them be.
    Best of luck.

  • Error while trying to install NI-VISA driver on SUSE LINUX 11.1(The version of gcc in the path does not match the version of gcc used to compile the currently running kernel.)

    hi i am trying to install NI-VISA driver on SUSE LINUX 11.1.
     the error message it shows is
              ******************************** ERROR ****************************************
    * The version of gcc in the path does not match the version of gcc used to    *
    * compile the currently running kernel.  This can cause unpredictable         *
    * behavior in kernel drivers and should be fixed.                             *
    * gcc version: Linux)                                                          *
    * kernel compiled with: 4.3.2                                                 *
    ******************************** ERROR ****************************************
    my kernel source version is 
       linux-8nes:/home/admin # rpm -qi kernel-source
    Name        : kernel-source                Relocations: /usr/src
    Version     : 2.6.27.29                         Vendor: openSUSE
    Release     : 0.1.1                         Build Date: Sun 16 Aug 2009 03:43:52 PM IST
    Install Date: Sat 24 Oct 2009 02:13:12 AM IST      Build Host: rinck
    Group       : Development/Sources           Source RPM: kernel-source-2.6.27.29-0.1.1.src.rpm
    Size        : 309251954                        License: GPL v2 only
    Signature   : RSA/8, Sun 16 Aug 2009 03:57:25 PM IST, Key ID b88b2fd43dbdc284
    Packager    : http://bugs.opensuse.org
    URL         : http://www.kernel.org/
    Summary     : The Linux Kernel Sources
    Description :
    Linux kernel sources with many fixes and improvements.
    Authors:
        Linus Torvalds <[email protected]>
        see /usr/src/linux/CREDITS for more details.
    Source Timestamp: 2009-08-15 17:53:59 +0200
    GIT Revision: 8a413546901c407e96f7fba18574cceeb40452af
    GIT Branch: SLE11_BRANCH
    Distribution: openSUSE 11.1 
    i had also installed GCC 4.3.2.
    it shows the error message as i had posted.
    please kindly help me on this.
    Thanks and regards,
    P.karthick

    Check this solution

  • I have a 6th gen nano and windows 8.1. Itunes does not recognise my nano anymore. I have tunes to download

    I have a 6th gen nano and windows 8.1. Itunes does not recognise my nano. I have tunes to download

    B noir
    Yes that is correct
    Okay. Have you tried a complete uninstall of both iTunes and all the other related software components and then a reinstall? If not, try the instructions from the following document:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8

  • I have recently purchased a used iPhone 4, when i plugged it into my pc a skull came up instead of the apple icon.  My pc does not recognise the iPhone, I have tried everything that I can think of.  Has anybody any ideas on how I can fix this?

    I have recently purchased a used iPhone 4, when I pulg it into my pc a skull icon appears instead of the apple.  The pc also does not recognise the iPhone.  The phone was originally purchased in March of this year, so it is under 12 months old.  Has anybody encountered this problem and or know how I can fix the phone? Thanks

    You have apparently purchased a jailbroken phone.  You can try to get it into recovery mode, then restore as new, but no guarantee it will work.
    http://support.apple.com/kb/ht1808

Maybe you are looking for

  • Write wordlist to text file

    How do I write a code that creates a new wordlist in a text file and able to add more words to the lists?

  • Read does not see last update

    I've got multiple thread reading and modifying the same objects. Sometimes a read by one thread does not see a change made and committed by another thread. Looking at the log shows the update was done and it set the field properly. But the next read

  • How to play Blu-Ray Discs

    Obviously no current Mac offers a stock Blu-Ray drive. But once you buy a 3rd Party Blu-Ray drive how do you go about actually playing movies? Will Apple's DVD Player play them? Do you need a 3rd party application?

  • Mail program sends from random accounts

    i have 4 email accounts (gmail and aol) i manage with apple's mail program.  Sometimes it randomly sends emails from the wrong email address (I do select the right address but it sometimes sends from the account I have not selected - it's random. Is

  • Web page redirection without auth on WLC

    Customer wants to have users on their guest WLAN get redirected to an acceptable usage policy page without having to authenticate when connecting to the network. We're using WLC4400's. I know it can be done using external elements, but can the contro