Please can someone help me out?????

I have just got an iphone 3Gs and I am trying yo install itunes 9.2. I have downloaded it from apple but everytime I try to open it I get this message,
Apple application support was not found.
Apple application support is required to run itunes, please uninstal iTunes, then re-instal iTunes again.
Error 2 (windows error 2)
I have done this several times now and I keep getting the same message.
Please help me its getting on my nerves now as I can't use my new toy.

I have a 64-bit windows 7
Many thanks, ant.
Try the procedure I describe to fizzylove in the following thread:
http://discussions.apple.com/message.jspa?messageID=10918603#10918603
Note: since posting the fizzylove procedure, the download location for the 64-bit iTunes installer has changed. You can now find it at the following location (at the time that I write this reply, at least):
http://support.apple.com/kb/DL1037

Similar Messages

  • Please can someone help me out. I initial configure my bluetooth stereo ear piece with my iphone 4 and it was working but I mistakenly forget the bluetooth device and I cannot reconfigure it again with my iphone 4.

    please can someone help me out. I initial configure my bluetooth stereo ear piece with my iphone 4 and it was working but I mistakenly forget the bluetooth device and I cannot reconfigure it again with my iphone 4?

    place the device in pairing mode and re-pair.
    If you don't know how to do this, go to the manufacturer's website and download the user guide for your device.

  • TS3694 i have -1 error while actualizing my ipad 2 3g, please can someone help me out

    Good day all;
    i have been encountering a problem on actualization of my ipad 3g 64gb, the ipad was working perfectly until i change my ios 6.0 to 6.1.1 and it stops at 66% on the progress bar, & since then i have tried a lot forms to get it out of dfu mode of which all efforts remain void; please i need help from all you genius, iam a bsic user,
    thanks in advance.
    Mathew.

    A -1 error sometimes indicates a hardware problem. See 2nd link below.
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • I want completely out of iCloud. Please, can someone help!

    After putting it off for months I finally uprgraded to Lion and switched from Mobile Me to iCloud. Ugh!! I have been here all day just trying to get my Mac Mail right. I don't have any devices so I don't really need my stuff 'up in the cloud' anyway. I have been trying to find out how to completely close out (NOT turn off) any connection with iCloud at this point. I've been to help. I've been everywhere. It seems like you can only turn it off or delete it from your devices.
    Please, can someone help me?!

    ... isn't that just ''signing out'? I don't want my mail being 'stored' somewhere.
    I understand that concern, and the answer is yes. Everything stored on Apple's servers will remain stored until you specifically delete it.
    In that case, simply delete any and all email messages, contacts, etc before signing out. Empty the trash if that is applicable.
    In Mail, the default account settings are as follows:
    If yours are like that, your deleted messages are permanently deleted after a month, but "sent" messages stay on the server forever. You can change those settings to "immediately" if that is your preference.
    As I say I undertand your concerns, just bear in mind Google Mail works exactly the same way. Even worse, some might say.
    No matter what email service you use, as far as I know there is no way to be absolutely certain that copies of your emails aren't stored forever, somewhere, perhaps completely beyond your reach. In fact, US law requires it for company email... and I'm not completely certain that law does not apply to iCloud, Gmail, or even individuals.
    http://apps.americanbar.org/lpm/lpt/articles/tch08061.shtml
    I have heard good legal arguments to the effect that the moment you send an email, it ceases to become your "property" so any subsequent attempt to eradicate it may be futile anyway.
    Sorry to go off on a tangent, but the bottom line is that permanently deleting email is more difficult than one would think, iCloud or not.

  • My ipod touch 5 turn its self off and wont come back on please can someone help

    my ipod touch turned its self off Last night had half of battery left and I cant turn it back on please can someone help cant live with out it

    Have you tried to reset it? Hold down the sleep and home keys for about 20 seconds. If you see the silver apple, let go and let it reboot and see if it comes back

  • SQL : Please can someone help ?

    Guys,
    Please can someone help me ? I've written the following query and struggling to get the correct
    outer join. In the first query, i look for all daily transactions of users registered under
    hill.com but it's not giving me a record for an game at 4:24 because there are 0 players from hill.com
    I need that to be displayed as 0 instead of skipping the entire row..
    In the second query, when i comment out the registration_site, that gives me the missing game. How do
    i use the outerjoin in this case ?
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    AND      registration_Site  in ('hill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164       6      14.25
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410       8      14.40
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94       3      22.50
    Thursday  08-FEB-07 04:36:00        .10       5.00      24.46 Y      38,    335       7      12.70
    select
    TO_CHAR(e.DRAW_DATE, 'Day') ,          
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,        
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') , 
             to_char(f.card_price/100,'999999.99')  , 
          to_char(f.prize_initialamount/100,'999999.99') ,
          to_char(e.total_prize/100,'999999.99') ,
            case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end ,
          to_char(e.player_count,'999999') ||','||    
          to_char((e.total_amount_bet/100)/(f.card_price/100),'999999') ,
             to_char(count(distinct(b.user_id)),'999999') ,  
             to_char(sum(d.total_bet_amount),'999999.99')
    FROM
         production.gl_user_registrations a,
         production.gl_user_game_sessions b,
         production.vf_game_parameters c,
         production.gl_user_game_play_summarys d,
         production.VF_BINGO_DRAW_HISTORY e,
         production.VF_BINGO_SCHEDULES f
    WHERE
         d.game_configuration_id =  c.parameters_id
    AND      b.user_game_session_id = d.user_game_session_id
    AND      b.user_id = a.user_id
    AND      (a.user_privilege = 'USER' or a.user_privilege = 'CHAT-RESTRICTED-USER')
    AND      d.user_game_state <> 'INPROGRESS'
    AND      c.for_money = '1'
    AND      registration_site<>'CWC'
    AND      game_type='Bingo'
    AND      d.GAME_PLAY_ID=e.GAME_PLAY_ID
    AND      trunc(e.draw_date) = trunc(sysdate-1)               
    --AND      registration_Site  in ('williamhill.com')
    AND      f.DRAW_TIME(+) = to_char(e.DRAW_DATE, 'hh24:mi:ss')              
    AND      f.week_day(+) = mod(to_char(e.DRAW_DATE,'d'),7)+1 
    GROUP BY
         f.card_price/100,      
            f.prize_initialamount / 100 ,
         TO_CHAR(e.DRAW_DATE, 'Day') ,            
             TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR') ,  
             TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS') ,    
             e.player_count,        
             e.total_amount_bet/100 ,        
             e.total_prize/100 ,       
             (e.total_amount_bet - e.total_prize)/100 ,
             case when e.total_amount_bet >= e.total_prize then 'Y' else 'N' end,      
             DECODE(SUBSTR(((e.total_amount_bet - e.total_prize)/100),1,1),'-', 'N', 'Y')
    order by TO_DATE(e.DRAW_DATE, 'DD/MM/RRRR'), TO_CHAR(e.DRAW_DATE, 'HH24:MI:SS')
    Thursday  08-FEB-07 04:12:00        .25       5.00      29.93 Y      39,    164      22      41.00
    Thursday  08-FEB-07 04:18:00        .10       5.00      29.93 Y      37,    410      27      41.00
    Thursday  08-FEB-07 04:24:00        .25       5.00      17.16 Y      35,     94      13      23.50
    Thursday  08-FEB-07 04:30:00        .50       5.00      34.31 Y      34,     94      14      47.00

    which table contains game_type column???
    It will be better to prefix all the columns with table aliases.

  • HT4759 Hi iv added iCloud to my iPhone 5 and doing so I've managed to wipe all contacts photos and now can't use IMessage, I went to backup and chose the wrong backup date, please can someone help me restore my phone back to how it was before I added iClo

    Hi iv added iCloud to my iphone5 and by doing so I've now lost all contacts, photos and also my iMessage please can someone help me to restore my phone back to how it was before doing this? I went to backup and chose wrong backup date and I'm now stuck. This is driving me mad PLEASE someone help??

    As far as I know you can't delete the primary email address for an iCloud account.  It's assigned when the account is created.  But your neighbor wouldn't have been able to get into your iCloud account without your Apple ID and password.  Are you sure the account wasn't still on your phone when you gave it to him?
    You could migrate a copy of your data to a new iCloud account but I would still be concerned that someone else was using my old account, which presumably still has your data in it.
    I'm fairly certain that you're going to have to have iCloud support help you sort this one out as they may have the ability to make changes to an existing account that users can't.  Make an appointment with the genius bar at a nearby Apple store and have them take a look at it.  If necessary, they should be able to contact iCloud support for you.

  • I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck and will post the output. Please can someone help me with what it all means.Thanks in advance

    I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck. Please can someone help me with what it all means.
    Thanks in advance.
    EtreCheck version: 1.9.15 (52)
    Report generated 19 September 2014 08:07:14 GMT+8
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:4:29
    Disk Information: ?
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (147 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.4 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.4 - SDK 10.4) Support
      [loaded] com.sophos.kext.sav (9.1.55 - SDK 10.7) Support
      [loaded] com.sophos.nke.swi (9.1.50 - SDK 10.8) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.sophos.autoupdate.plist Support
      [running] com.sophos.configuration.plist Support
      [running] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [running] com.sophos.scan.plist Support
      [running] com.sophos.sxld.plist Support
      [running] com.sophos.webd.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    Launch Agents: ?
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [running] com.sophos.uiserver.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.music.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Support
    User Login Items: ?
      iTunesHelper
      TomTomHOMERunner
      AdobeResourceSynchronizer
      Dropbox
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivX Web Player: Version: 3.2.1.977 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      EPPEX Plugin: Version: 10.0 Support
      Default Browser: Version: 537 - SDK 10.9
      OVSHelper: Version: 1.1 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions: ?
      Ultimate
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Perian  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 297.29 GB Disk used: 160.38 GB
      Destinations:
      Data [Network] (Last used)
      Total size: 2 TB
      Total number of backups: 99
      Oldest backup: 2012-04-20 17:05:32 +0000
      Last backup: 2014-09-18 23:49:25 +0000
      Size of backup disk: Excellent
      Backup size 2 TB > (Disk size 297.29 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          6% InterCheck
          5% iCalExternalSync
          3% WindowServer
          2% CalendarAgent
          2% SystemUIServer
    Top Processes by Memory: ?
      152 MB SophosScanD
      147 MB InterCheck
      106 MB SophosAntiVirus
      66 MB Dropbox
      57 MB com.apple.iTunesLibraryService
    Virtual Memory Information: ?
      161 MB Free RAM
      1.55 GB Active RAM
      1.41 GB Inactive RAM
      902 MB Wired RAM
      611 MB Page-ins
      0 B Page-outs

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

  • My itunes wont work and wont let my uninstall and then reinstall the newer version as its asking me too! i keep getting an error message!...please can someone help?

    please can someone help me to unistall itunes from my laptop control panel, this means it also wont let me install the latest version!

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • I cant install or uninstall my itunes. I get this error 'the feature you are trying to use is on a network resource that is unavilable' Now ive seen the solutions on here but im using windows 8.1. Ive tried all options so please can someone help?

    I cant install or uninstall my itunes. I get this error 'the feature you are trying to use is on a network resource that is unavilable' Now ive seen the solutions on here but im using windows 8.1 and none of them work for me. Ive tried all options so please can someone help?

    That doesnt work for me. I removed itunes through the windows cleaner method as shown in other posts and re-installed itunes. Now im getting this error
    iTunes was not installed correctly. Please reinstall iTunes
    Error 7 (Windows error 126)
    Also my Microsoft office has stopped working after i deleted Itunes which is really strange.
    Can somebody provide me a solution please....

  • HT3702 I'm trying to open an iTunes account and was asked to provide one of each:credit card details or gift card details.i provided a gift card details and yet I'm being asked to contact the support team!!! Pls can someone help me out on this..thanx. Bre

    I'm trying to open an iTunes account and was asked to provide one of each:credit card details or gift card details.i provided a gift card details and yet I'm being asked to contact the support team!!! Pls can someone help me out on this as I cant enjoy my new iPad 3 without buying apps

    Brenda, the easiest way to contact the support team is thru the iTunes Customer Service website:
    http://www.apple.com/support/itunes/contact/

  • HT1438 i keep getting SIM locked message on my iphone 4s and I need to unlock it please please can someone help me? The voice activation is on and when I type in what I think is the code It wont even put in the numbers

    I am trying to unlock my SIM from my iphone 4s, as I am getting a mesage SIM locked. How do I unlock this?Also I am typing in what I think my code is and it is not working. The voice activation wil not allow me to type in the numbers for some reason. I have turned it off and on about 7 times now. please please please can someone help me?

    If you bought the iphone in the US and it is locked to a specific carrier, then you can't use a different sim (from another carrier).  Is this your situation?
    Otherwise I'm not sure what you mean by "trying to unlock my SIM".  In which country did you buy the iphone?  Who's your carrier?

  • I am having problems getting iTunes to load - if I can't solve this issue I will have to get rid of my iPhone 4S which I don't want to so can someone help me out with this as I'm starting to get really fed-up and paranoid - I need my phone

    As stated above - I am having a really big problem with the iTunes 10.6 installer.
    First tells me 2 DLL files are missing and then that a program needed for the install isn't there.
    I never had a problem withiTunes last year when I had an iPad.
    I deleted the iTunes from then because I found the iPad to heavy - I have very severe arthritis
    in my wrists. I might as well send my iPhone back to the retailer I got it from if this issue can't be solved.
    I'm using Windows XP Pro with SP3 so it should work.
    Please can someone help?
    Cheers
    KnitWit46 in UK

    BOB we need you urgently
    Perhaps Bob will see this thread, he is the professor in these cases.
    You do not use a WEP password but wpa/wpa2 on router and equipment.
    All equipment connects to WiFi, but for your iPad.
    Even with all other equipment WiFi off, you cannot connect your iPad.
    Your iPad connects to other WiFi nets correctly.
    All resets etc done on iPad and Router.
    Still I am not sure it is your router for sure, frustrating...
    I want to test 2 other things:
    1. in your iPad, set everything OFF in Settings/Cellular, turn off/then/on your WiFi, and see whether it will still not connect...
    2. If that does not do it: disconnect the router as well as the modem from the power, for 15 seconds, then reconnect the modem, let it fully start, then reconnect the routet let it fully start, turn of your WiFi in iPad, then on, and see whether it will connect.

  • HT1926 Trying to re-install iTunes and the message "Apple mobile device failed to start. Verify that you have sufficient privileges to start system services." But I don't know what to do? Please can someone help, I'm not the most technologically advanced

    Trying to re-install iTunes and the message "Apple mobile device failed to start. Verify that you have sufficient privileges to start system services." But I don't know what to do? Please can someone help, I'm not the most technologically advanced person.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Unable to update to ios 5 on windows 7. please can someone help me i have tried everything? i deleted itunes and downloaded the new version when i plug my iphone 4 in it does a back and then I try and update the software it extracts error 3194

    unable to update to ios 5 on windows 7. please can someone help me i have tried everything? i deleted itunes and downloaded the new version when i plug my iphone 4 in it does a back and then I then everything runs normal and it extracts and then i get an error code at the end 3197. had the iphone for two months and its new.
    Please can somene help me, i am currently on version 4.3.3 (8J2)
    Modem Firmware 04.10.01

    followed someones instructions and it has worked ios 5 is now working on my iphone 4

Maybe you are looking for