How do I get past the request to turn off Itunes.

Hi people,
Sorry if this question has already been answered. I tried to find some help on the forum but the question may have been asked a different way and I couldn't find it.
So my problem, I have downloaded xcode_3.2.6_and_ios_sdk_4.3.dmg and it is sitting in my downloads folder.
I have a Mac Mini with Mac OS X Version 10.6.8
According to all messages, everything should be fine for me to install.
So I click on the .dmg file and it churns away for a while showing various progress messages. All goes well until it has about 2 minutes to go. Then a popup appears that says I must shut down ITunes before the install can finish. Well, I don't have ITunes running.
I have checked everything I can to make sure there is nothing connected that may somehow be accessing ITunes. I have even re-booted the computer and done nothing but run the install. It still stops at 2 minutes and says I have to shut down ITunes.
The only way I have been able to get out of the popup is to force a shutdown using the Apple icon on the top left of my computer screen.
Can anyone tell me what I need to do to get xcode to install?
Thanks
EastWind

You must close:
- iTunes
- Simulator
- Xcode
- Application Loader
...and...run Activity Monitor, locate and kill 'iTunes Helper', then try installing again.

Similar Messages

  • HT1212 I don't think there is a pass code on my 4S, so how do I get past the request in order to install 7.1.1?

    I want to install ios 7.1.1 on my 4S but it asks me for a pass code. I don't think there is a pass code on this phone. So how do I bypass this request in order to make the installation? thanks.

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • How do I get past the "What's New in iTunes 10.3" welcome window in the iTunes Store? (OS 10.4.11, iTunes 8)

    Hello. I have iTunes 8 on a MacBook with OS 10.4.11. Everytime I try to access the iTunes Store, I get a "What's New in iTunes 10.3" window that I can't seem to bypass. Any suggestions?
    Lee

    The update to iTunes 9.2.1 can be found here... I'm assuming you've already done this as this posting is well over a year old. so it's just for informational purposes.
    http://support.apple.com/kb/DL1056

  • How do I get to the request object in a webflow.

    How do I get to the request object in a webflow.
    I created a input process and one function it needs to do is create a cookie.
    Problem is I don't have a response object.
    How do I create/get the response object so I can create a cookie.
    Thanks
    Michael C Ford
    ------------------ Code Line ------------------------------------
    public Object process(HttpServletRequest req, Object requestContext)
    throws ProcessingException
    // get the pipeline and namespace info for the process
    PipelineSession pSession = null;
    String namespace = null;
    String username = req.getRemoteUser();
    pSession = getPipelineSession(req);
    namespace = getCurrentNamespace(pSession);
    /* ***** DO THE INITIAL CREATE OF THE BEAN *** */
         try {
              Properties props = new Properties();
              props.put(
                   Context.INITIAL_CONTEXT_FACTORY,
                   "weblogic.jndi.WLInitialContextFactory");
              Context ctx = new InitialContext(props);
              Object homeObject = ctx.lookup("com.??.??PortalMgr");
              SeechangePortalMgrHome seechangePortalMgrHome =
              (SeechangePortalMgrHome) javax.rmi.PortableRemoteObject.narrow(
                                                      homeObject,
                                                      SeechangePortalMgrHome.class);
              SeechangePortalMgr portalMgr = seechangePortalMgrHome.create();
    /* Set the initail user */
    portalMgr.setUser(username);          
              UserRuntime userRuntime = (UserRuntime)portalMgr.getRuntimeObject();
              System.out.print("Run Time User is " + userRuntime.getUserName());
              System.out.print("Run Time User is " + userRuntime.getOrgSeq());
    // ** cookies for Actuate XXX=(customer sequence ID), YYY=ZZZ is a dummy per
    their requirement
              Cookie cCustSeqNumber = new Cookie("XXX",userRuntime.getOrgSeq());
              Cookie cPassword = new Cookie("YYY","ZZZ");
              cCustSeqNumber.setPath("/");
              cPassword.setPath("/");
              ??response.addCookie(cCustSeqNumber);
              ??response.addCookie(cPassword);          
         } catch (Exception ee) {
              System.out.print("Unable to create Portal Manager" + ee);
    // at this point we add the logic to produce the bean
    return "success";

    Thanks
    Just what I needed, except I needed to caste response.
    Michael C
    "Daniel Selman" <[email protected]> wrote:
    Michael,
    // get the HttpServletResponse from the HttpServletRequest
    HttpServletResponse response =
    equest.getAttribute( WebflowConstants.HTTP_SERVLET_RESPONSE );
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    response.addCookie(cCustSeqNumber);
    response.addCookie(cPassword);
    You HAVE the HttpServletRequest...
    public Object process(HttpServletRequest req, ObjectrequestContext)
    throws ProcessingExceptionMake sense?
    Dan
    "michael C Ford" <[email protected]> wrote in message
    news:[email protected]...
    How can I get to the response this way ?
    this just stored the response as an attribute did it now ?
    If I don't have it, how can I use it in a setAttribute ?
    Sorry just a little slow
    I can't do this can I ?
    request.setAttribute(WebflowConstants.HTTP_SERVLET_RESPONSE,response);
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    response.addCookie(cCustSeqNumber);
    response.addCookie(cPassword);
    "Daniel Selman" <[email protected]> wrote:
    Michael,
    I found this handy snippet in our code:
    // Put the httpServletResponse into the request, this is done
    in
    case IPs want to
    // use the response to deposit cookies. The IPs maynot howeverwrite
    // anything to the response as this will cause an
    IllegalStateException
    request.setAttribute(WebflowConstants.HTTP_SERVLET_RESPONSE,
    response);
    So, the HttpServletResponse is bound into the HttpServletRequest usingthe
    key, WebflowConstants.HTTP_SERVLET_RESPONSE.
    Magic!
    Sincerely,
    Daniel Selman
    "michael C Ford" <[email protected]> wrote in message
    news:[email protected]...
    How do I get to the request object in a webflow.
    I created a input process and one function it needs to do is create
    a
    cookie.
    Problem is I don't have a response object.
    How do I create/get the response object so I can create a cookie.
    Thanks
    Michael C Ford
    ------------------ Code Line ------------------------------------
    public Object process(HttpServletRequest req, Object
    requestContext)
    throws ProcessingException
    // get the pipeline and namespace info for the process
    PipelineSession pSession = null;
    String namespace = null;
    String username = req.getRemoteUser();
    pSession = getPipelineSession(req);
    namespace = getCurrentNamespace(pSession);
    /* ***** DO THE INITIAL CREATE OF THE BEAN *** */
    try {
    Properties props = new Properties();
    props.put(
    Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    Context ctx = new InitialContext(props);
    Object homeObject = ctx.lookup("com.??.??PortalMgr");
    SeechangePortalMgrHome seechangePortalMgrHome =
    (SeechangePortalMgrHome) javax.rmi.PortableRemoteObject.narrow(
    homeObject,
    SeechangePortalMgrHome.class);
    SeechangePortalMgr portalMgr = seechangePortalMgrHome.create();
    /* Set the initail user */
    portalMgr.setUser(username);
    UserRuntime userRuntime = (UserRuntime)portalMgr.getRuntimeObject();
    System.out.print("Run Time User is " + userRuntime.getUserName());
    System.out.print("Run Time User is " + userRuntime.getOrgSeq());
    // ** cookies for Actuate XXX=(customer sequence ID), YYY=ZZZ isa
    dummy per
    their requirement
    Cookie cCustSeqNumber = new
    Cookie("XXX",userRuntime.getOrgSeq());
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    ??response.addCookie(cCustSeqNumber);
    ??response.addCookie(cPassword);
    } catch (Exception ee) {
    System.out.print("Unable to create Portal Manager" + ee);
    // at this point we add the logic to produce the bean
    return "success";

  • Apple ID.  My newly updated iPad 2 wants an email for the apple ID.  My apple ID is not an email address.  How can I get past the set-up screen?

    My newly updated iPad 2 wants an email for the apple ID.  My apple ID is not an email address.  How can I get past the set-up screen?
    I can't change my Apple ID.  It would mess all my stuff up.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • HT201178 I have a Mac mini with Magic Trackpad and wireless keyboard. The keyboard and track pad got wet so I have purchased new ones. Problem is how do I get past the log in screen to set up the pairing of the devices? The old ones do not work

    How do I get past the login screen to pair my new wireless keyboard and trackpad when the old ones are water damaged and don't work

    Have you tried pulling the batteries out of the damaged ones so that they are completely off; then shutdown your Mac Mini via the power button on the back right. Turn on your new keyboard and trackpad then power your Mini back up? The auto detection should find your new keyboard and trackpad.

  • How do i get past the "do not have sufficient privileges" error message installing flashplayer?

    how do i get past the "do not have sufficient privileges" error message installing flashplayer? i've googled the problem and seen the other solutions and for some reason cannot get any of them to work for me.

    I've recommended several things here in the forums and like you, I've seen zero success.
    Run as Administrator = no luck.
    Take ownership of the c drive = no luck.
    Create a new (admin) account = no success.
    I've even seen one poster who reformatted and reinstalled Window 7, and no luck.
    Frankly, I'm at a total loss.

  • How do i get past the security questions

    How do I get past the security questions when I never set them up

    James ..
    You need to contact Apple directly > Contacting Apple for support and service

  • How do i get past the screen that shows itunes icon and connection cord?

    How do i get past the screen that shows itunes icon and connection cord?

    Connect the iPod to your computer and restore via iTunes
    iTunes: Restoring iOS software

  • Will a program mention for MAC OSX be allowed to download on the newest iPad version. If so, how do I get past the "safari" can not download this file?

    Will a program mention for MAC OSX be allowed to download on the newest iPad version. If so, how do I get past the "safari" can not download this file?

    No, because iPads do not run Mac OS X. They run iOS.

  • HT4759 I don't use other i-devices. How do I get past the "Set up iCloud on a device ..." redirect to set up iCloud?

    I don't use other i-devices. How do I get past the "Set up iCloud on a device ..." redirect to set up iCloud? I want to use icloud for a calendar, storage of my photos and ebooks plus the Calibre reader app with chrome browser. OS is windows 7, but I will change to windows 8 soon.

    You need to set up an iCloud account before you can back it up. And you back it up directly from the device - iCloud.com has nothing to do with it. Follow the instructions in the link below to set up your iCloud account and to set up Automatic Backups:
    https://www.apple.com/icloud/setup/ios.html
    Cheers,
    GB

  • How do I get past the pass code on iPad running on Ios7.1 because j have forgotten it and I don not own a computer so it has to be with our a computer

    How do I get past the pass code on iPad running on Ios7.1 because j have forgotten it and I don not own a computer so it has to be with out
    a computer

    Use a friend's computer. Your iPad will be erased.
    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • I am unable to get past the apple login screens on my iPad to access my settings menu for a new home network. My password is not recognized so I cannot even get into the settings mode to make a chance. How can I get past the Apple logins?

    I am unable to get past the apple login screens on my iPad to access my settings menu for a new home network. My Apple password is not recognized so I cannot even get into the settings mode to make a chance. How can I get past the Apple logins?

    Hey Dpcupcake,
    If you can not get past the sign in screen on your iPad, you will need to use the steps in this article to recover use of your iPad -
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • Upon start up I get a start up disk full message and to delete files, now I only get a a blue screen on start up. How to I get past the blue screen and how do I delete files?

    Upon start up I get a "start up disk full message, delete files". Now on startup I only get a blue screen. How do I get past the blue screen and how do I delete files.

    That;s really not enough free space... you can use a tools such as OmniDiskSweeper to find out where your large files reside and begin pruning (or copying to an external if they're files that you want to keep).
    One thing is certain - if you're going to continue your current usage you're certainly going to need to install a larger boot drive.
    Clinton

  • I choose Adobe Reader XI to open a GPX file. It will not open it how do I get past the screen that says it will not open it to choose something else?

    I choose Adobe Reader XI to open a GPX file. It will not open it how do I get past the screen that says it will not open it to choose something else?

    http://windows.microsoft.com/en-us/windows/change-file-open-program#1TC=windows-7
    or
    http://windows.microsoft.com/en-us/windows/change-default-programs#1TC=windows-7

Maybe you are looking for

  • How to make a field Mandatory in a Table view?

    How to make a field Mandatory in a Table view? The requirement is, the user should not be able to append a new Row, unless and untill he enteres the data in the column SOLD-TO. Now how do i acheive making this field madatory. Normally in Edit form vi

  • APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN

    Hi All, i have configured a printer in R12.1.3, when i am trying to print its giving below error... please help.. lp: The printer or class was not found. Pasta: Error: Print failed. Command=lp -c -dHP_P4014N /apps/local/inst/apps/UAT_server/appltmp/p

  • Line Chart Legend not Appearing

    Hi all, I'm working on learning Flex for potential use at my company. Of course for the initial demo, I want everything to look great and I'm having trouble with charts. I'm feeding a chart from an external xml file. The data shows up correctly but I

  • I am connected via wifi and I am getting a warning of an Untrusted Connection try to connect to 10.10.7.200.

    I have connected to tons of wifi over the years with this netbook. Ihave experienced this the 2 out of 2 time I have tried to connect at this new colleve I am attending. Should I select Add Exception to try to move past this?

  • The webpage in the swf file

    hi,i want to catch a function that when i open the swf file , then the webpage shows in flash, how to realize it? if i use the ie to parse the html code can achieve the goal. and i want to know how the AIR achieve the goal. please give me some advice