IPad 2 only 1 month old!

Home button has to be pressed many times to close safari

The Home button should work easily and one push should send you out of Safari and back to the Home screen. If your button is not working correctly take your iPad back to Apple as soon as you can to get the problem worked out.

Similar Messages

  • Script to delete users profile only months old profile with the Registry itself but should leave current profile intact.

    Hi every one.
    first of all sry if this post is repetitive for the profile deletion.
    If you have a correct link please post it below or the script itself.
    Question: as i have a lot of computers with windows 7 (2400 systems) as the operating system on them and as the users keep on changing or shifting place from one PC to another PC and managing the system or the C drive for the consistent system performance
    or freeing space is a challenging task.
    I would like have a Script that would only delete old (No of Months) profile as well as the registry itself  but should keep the current profile instanct the the registry too.
    I did find the below script on some forum that gets the job done but not the right way as it deletes all the profile and excludes the admin,administrator etc as seen in the script but i cannot delete the old profile of a certain time or date period.
    As again sorry if this post looks like mess but help is appreciated 
    @echo off
    ' DELETES LOCAL PROFILES ON WINDOWS 7
    :START
    FOR /f "tokens=*" %%a IN ('dir c:\USERS /b /ad') DO CALL :PATHCHECK "%%a"
    GOTO REGISTRY
    ::The following is where you would put in the profile you wish to exclude from the wipe. Just copy/paste a line and make the appropriate revisions.
    :PATHCHECK
    IF /i [%1]==["Administrator"] GOTO :PATHSKIP
    IF /i [%1]==["Admin"] GOTO :PATHSKIP
    IF /i [%1]==["All Users"] GOTO :PATHSKIP
    IF /i [%1]==["Default"] GOTO :PATHSKIP
    IF /i [%1]==["Default user"] GOTO :PATHSKIP
    IF /i [%1]==["public"] GOTO :PATHSKIP
    GOTO PATHCLEAN
    :PATHSKIP
    ECHO. Skipping path clean for user %1
    GOTO :EOF
    :PATHCLEAN
    ECHO. Cleaning profile for: %1
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHFIRST
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHFIRST
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHSECOND
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHSECOND
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    GOTO :EOF
    :REGISTRY
    ECHO.------------
    FOR /f "tokens=*" %%a IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECK "%%a"
    GOTO VERIFY
    ::The following is where it parses the registry data and checks it against the user path. Copy/paste the IF line and make the user modification needed.
    :REGCHECK
    FOR /f "tokens=3" %%b in ('reg query %1 /v ProfileImagePath') DO SET USERREG=%%b
    IF /i [%USERREG%]==[c:\Users\Administrator] GOTO :REGSKIP
    GOTO REGCLEAN
    :REGSKIP
    ECHO. Skipping registry clean for %USERREG%
    GOTO :EOF
    :REGCLEAN
    ECHO. Cleaning registry for: %USERREG%
    reg delete %1 /f
    GOTO :EOF
    ::The cleaning portion of the script is now done. Now begins the verification and log reporting.
    :VERIFY
    FOR /f "tokens=*" %%c IN ('dir c:\USERS /b /ad') DO CALL :VERIFYPATH "%%c"
    ::Same thing as the clean - if you need to exclude an account, make your copy/paste below.
    :VERIFYPATH
    IF /i [%1]==["Administrator"] GOTO :EOF
    IF /i [%1]==["All Users"] GOTO :EOF
    IF /i [%1]==["Default"] GOTO :EOF
    IF /i [%1]==["Default user"] GOTO :EOF
    IF /i [%1]==["public"] GOTO :EOF
    GOTO VERPATHREPORT
    :VERPATHREPORT
    ECHO. %1
    IF /i [%1]==[] (
    set PATHRESULT=PATH_SUCCESS
    ) ELSE (
    set PATHRESULT=PATH_FAILURE
    ECHO. %PATHRESULT%
    GOTO REGVERIFY
    :REGVERIFY
    ECHO.------------
    FOR /f "tokens=*" %%d IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECKVERIFY "%%d"
    GOTO REGVERIFYECHO
    ::Same thing as the registry clean - copy/paste excluded profiles below.
    :REGCHECKVERIFY
    FOR /f "tokens=3" %%e in ('reg query %1 /v ProfileImagePath') DO SET USERREGV=%%e
    IF /i [%USERREGV%]==[c:\Users\Administrator] GOTO :EOF
    GOTO REGVERIFYECHO
    :REGVERIFYECHO
    ECHO. %1
    IF /i [%1]==[] (
    set REGRESULT=REG_SUCCESS
    ) ELSE (
    set REGRESULT=REG_FAILURE
    ECHO. %REGRESULT%
    GOTO REPORTCHECK
    ::The following is where you would enter the mapped drive path.
    ::You can use a straight UNC if you like, but I find this to be a bit
    ::more solid and it allows you to use different creds in case you
    ::automate it for a local scheduled task to run as local admin.
    :REPORTCHECK
    'net use t: \\server\path
    'IF EXIST "t:\labreport.txt" (
    'GOTO REPORTGEN
    ') ELSE (
    'GOTO EXIT
    ::This is a time/date stamp creator that I actually pulled from a Minecraft
    ::to Dropbox backup script I made a long while back.
    ':REPORTGEN
    'FOR /F "tokens=1 delims=:" %%f in ('time /T') DO SET T=%%f
    'FOR /F "tokens=*" %%g in ('echo %date:~10,4%-%date:~4,2%-%date:~7,2% %T%-%time:~3,2%-%time:~6,2%') DO SET TDATETIME=%%g
    ECHO. %PATHRESULT% %REGRESULT% %COMPUTERNAME% %TDATETIME% >> "t:\labreport.txt"
    net use t: /delete
    GOTO EXIT
    :EXIT
    exit
    :EOF

    Hi every one.
    first of all sry if this post is repetitive for the profile deletion.
    If you have a correct link please post it below or the script itself.
    Question: as i have a lot of computers with windows 7 (2400 systems) as the operating system on them and as the users keep on changing or shifting place from one PC to another PC and managing the system or the C drive for the consistent system performance
    or freeing space is a challenging task.
    I would like have a Script that would only delete old (No of Months) profile as well as the registry itself  but should keep the current profile instanct the the registry too.
    I did find the below script on some forum that gets the job done but not the right way as it deletes all the profile and excludes the admin,administrator etc as seen in the script but i cannot delete the old profile of a certain time or date period.
    As again sorry if this post looks like mess but help is appreciated 
    @echo off
    ' DELETES LOCAL PROFILES ON WINDOWS 7
    :START
    FOR /f "tokens=*" %%a IN ('dir c:\USERS /b /ad') DO CALL :PATHCHECK "%%a"
    GOTO REGISTRY
    ::The following is where you would put in the profile you wish to exclude from the wipe. Just copy/paste a line and make the appropriate revisions.
    :PATHCHECK
    IF /i [%1]==["Administrator"] GOTO :PATHSKIP
    IF /i [%1]==["Admin"] GOTO :PATHSKIP
    IF /i [%1]==["All Users"] GOTO :PATHSKIP
    IF /i [%1]==["Default"] GOTO :PATHSKIP
    IF /i [%1]==["Default user"] GOTO :PATHSKIP
    IF /i [%1]==["public"] GOTO :PATHSKIP
    GOTO PATHCLEAN
    :PATHSKIP
    ECHO. Skipping path clean for user %1
    GOTO :EOF
    :PATHCLEAN
    ECHO. Cleaning profile for: %1
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHFIRST
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHFIRST
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHSECOND
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHSECOND
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    GOTO :EOF
    :REGISTRY
    ECHO.------------
    FOR /f "tokens=*" %%a IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECK "%%a"
    GOTO VERIFY
    ::The following is where it parses the registry data and checks it against the user path. Copy/paste the IF line and make the user modification needed.
    :REGCHECK
    FOR /f "tokens=3" %%b in ('reg query %1 /v ProfileImagePath') DO SET USERREG=%%b
    IF /i [%USERREG%]==[c:\Users\Administrator] GOTO :REGSKIP
    GOTO REGCLEAN
    :REGSKIP
    ECHO. Skipping registry clean for %USERREG%
    GOTO :EOF
    :REGCLEAN
    ECHO. Cleaning registry for: %USERREG%
    reg delete %1 /f
    GOTO :EOF
    ::The cleaning portion of the script is now done. Now begins the verification and log reporting.
    :VERIFY
    FOR /f "tokens=*" %%c IN ('dir c:\USERS /b /ad') DO CALL :VERIFYPATH "%%c"
    ::Same thing as the clean - if you need to exclude an account, make your copy/paste below.
    :VERIFYPATH
    IF /i [%1]==["Administrator"] GOTO :EOF
    IF /i [%1]==["All Users"] GOTO :EOF
    IF /i [%1]==["Default"] GOTO :EOF
    IF /i [%1]==["Default user"] GOTO :EOF
    IF /i [%1]==["public"] GOTO :EOF
    GOTO VERPATHREPORT
    :VERPATHREPORT
    ECHO. %1
    IF /i [%1]==[] (
    set PATHRESULT=PATH_SUCCESS
    ) ELSE (
    set PATHRESULT=PATH_FAILURE
    ECHO. %PATHRESULT%
    GOTO REGVERIFY
    :REGVERIFY
    ECHO.------------
    FOR /f "tokens=*" %%d IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECKVERIFY "%%d"
    GOTO REGVERIFYECHO
    ::Same thing as the registry clean - copy/paste excluded profiles below.
    :REGCHECKVERIFY
    FOR /f "tokens=3" %%e in ('reg query %1 /v ProfileImagePath') DO SET USERREGV=%%e
    IF /i [%USERREGV%]==[c:\Users\Administrator] GOTO :EOF
    GOTO REGVERIFYECHO
    :REGVERIFYECHO
    ECHO. %1
    IF /i [%1]==[] (
    set REGRESULT=REG_SUCCESS
    ) ELSE (
    set REGRESULT=REG_FAILURE
    ECHO. %REGRESULT%
    GOTO REPORTCHECK
    ::The following is where you would enter the mapped drive path.
    ::You can use a straight UNC if you like, but I find this to be a bit
    ::more solid and it allows you to use different creds in case you
    ::automate it for a local scheduled task to run as local admin.
    :REPORTCHECK
    'net use t: \\server\path
    'IF EXIST "t:\labreport.txt" (
    'GOTO REPORTGEN
    ') ELSE (
    'GOTO EXIT
    ::This is a time/date stamp creator that I actually pulled from a Minecraft
    ::to Dropbox backup script I made a long while back.
    ':REPORTGEN
    'FOR /F "tokens=1 delims=:" %%f in ('time /T') DO SET T=%%f
    'FOR /F "tokens=*" %%g in ('echo %date:~10,4%-%date:~4,2%-%date:~7,2% %T%-%time:~3,2%-%time:~6,2%') DO SET TDATETIME=%%g
    ECHO. %PATHRESULT% %REGRESULT% %COMPUTERNAME% %TDATETIME% >> "t:\labreport.txt"
    net use t: /delete
    GOTO EXIT
    :EXIT
    exit
    :EOF

  • HT1721 First Generation Ipad Few Months Old

    I have the first generation of iPad.  Apple Care replaced my iPad 3 months ago due to a battery/charging problem.  A couple of weeks ago, the iPad screen appeared to have colors reversed.  Photos  appear to be like negitives, background is light, icons look odd?I
    What can I do to fix?
    thanks,
    Pattie

    You have a good memory!
    That's the correct set of steps and it should fix Pattie's screen negative view.

  • Original iPad, 18 months old, battery failing: replace battery or replace iPad?

    At this point in Apple's product life cycle, can I expect the greatest utility by a) replacing the battery in my original iOS 5 iPad,  getting another 2 years use out of an end of life system, b) buying a refurbed iPad 2, c) buying a new iPad 3, or d) limping along until the next-gen iOS 7 iPads arrive, probably in October 2013?
    At this time I can't say whether ios7 will run on the iPad 2 or iPad 3. Assuming the iPad 2 has no upgrade path, I don't think that's a viable option. I would expect the iPad 3 will upgrade to its 7, so that's a viable choice, but it's about $ 300 more than the cost of replacing the battery, and it leaves me with an unusable but otherwise perfectly good iPad.
    Replacing the battery costs $110 from Ap,ple, or about $30 if I dare to do it myself. This presumably would give me another 2 years of battery life at low cost.
    My concern is more with long-term support for iOS 5. I had a wake-up call a few months ago when one of my daily go-to apps, Zite, updated in the App Store to iOS 6 only. CBC's news app also went iOS 6 a few days ago. I still use the iOS 5 version of these apps, but the underlying online services may change, rendering the apps unusable. Both apps still appear as updates in the App Store, each with a note indicating they are iOS 6-only updates. How long until the rest of my favorite apps go iOS 6 only in the App Store?
    If I lose the iOS 5 version of an app, either through a crash, OS corruption or accidental deletion, or I haven't properly backed them up (or more likely forgotten where I backed them up!), I'm hosed, because the original iOS 5 apps are no longer available from the App Store.
    Gotta end this post here, because my battery's down from 35% to 10% in the 40 minutes or so it took me to write this post. Any suggestions are welcome!

    Replace the battery and then sell the iPad.
    You may can get the battery replaced at 3rd party repair sources for less $.
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    iGadgetResQ
    http://www.igadgetresq.com/ipad-repair/
    How to Sell Your Old iPad  http://tinyurl.com/85d69lk
    Other sources to sell.
    eBay Instant Sell http://instantsale.ebay.com/?search=ipad
    Sell and Recycle Used Electronics - Gazelle http://www.gazelle.com/
    For instant gratification in selling a used iPhone or iPad, Gazelle’s Gadget Trader, an iOS app, is tough to beat. In seconds it detects the device and reveals how much it is worth in good condition. Tap the Sell This Phone to Gazelle button and the deed is done.
    Sell Electronics for Cash - Next Worth  http://www.nextworth.com/
    Buy My Tronics  http://www.buymytronics.com/
    Sell Your iPad http://www.sellyourmac.com/mac-product-guides/ipad.html
    Totem http://www.hellototem.com/
     Cheers, Tom

  • Hi I have problem with switch on my ipad.I tried by itunes but nothing happend.What I have to do?Ipad is only 3 months old :(

    hi. Could someone help me!!!   I have problem with stwich on my ipad. he is only 3 months old. I tried by itunes but still dont help. is the problem number 9.please help me!!!!

    My ipad is on DFU mode I conected with itunes. Itunes see my ipad. He restoring the software on ipad and then nothing happed. I see just logo apple. Could you help me what I have to do?

  • I get a message the message " Can not get mail. Not connected to server" Yet I am connected with Wi-fi and can access all other websites. Can you advise? My iPad is only a month old!

    Has any one experienced not being able to send mail and only receiving some? I get the message " can not get mail. No connection to the server! " Yet I get some mail but can not send out any. My iPad is only 1 month old! It worked perfectly for about 10 days.
    Thx
    Agnes

    Hey agnesfromcopenhagen k,
    Thanks for the question. I understand you are experiencing issues with Mail on your iPad. The following resource provides some troubleshooting steps. What kind of account are you using? Some internet providers require that you be connected to your home Wi-Fi (or for work accounts, inside your corporate Wi-Fi/firewall). Also, some email accounts require two-step authentication. For more information, see this resource:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/TS3899
    Thanks,
    Matt M.

  • My iPad 2 is only 7 months old and is draining battery life quickly some days and others shutting off at 40% - 50% and when I turn the iPad back on it keeps turning it self off continuously. I have a feeling the battery could be faulty, what do I do?

    My iPad 2 is only 7 months old and is draining battery life quickly some days and others shutting off at 40% - 50% and when I turn the iPad back on it keeps turning it self off continuously. I have a feeling the battery could be faulty, what do I do?

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these Steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Why won't my iPad air charge anymore? I bought a new cable but it still doesn't charge, it is only 3 months old.

    Why won't my iPad air charge anymore? I bought a new cable but it still doesn't charge, it is only 3 months old. 

    If you are still having problems with your iPad, it is still under AppleCare.
    Bring it into an Apple Store to have it diagnosed and repaired under warranty.

  • HT1766 My mini Ipad is only 2 months old and it has frozen. The screen says that the ipad needs to be backed up on icloud but the touch screen has frozen and I can even shut it down. Suggestions

    Does anyone know how to unfreeze a screen.
    My mini Ipad is only 2 months old and it has frozen. The screen says that the ipad needs to be backed up on icloud but the touch screen has frozen and I can even shut it down. Suggestions

    Try to reboot it. Hold down the sleep and home keys until you see the silver apple, about 20 seconds or so. It should reboot and work for you.

  • HT4061 My Child has disabled my ipad mini...It ran out of charge and now is disabled for 22928370 minutes, what can I do as I cant get onto the ipad to get the serial number to speak to an advisor and its only 10 months old. HELP!

    Please help me....
    My Child has disabled my ipad mini...It ran out of charge and now is disabled for 22928370 minutes, what can I do as I cant get onto the ipad to get the serial number to speak to an advisor and its only 10 months old. HELP!

    Hello Jesslocko,
    Before following the iPad Restore process make sure you have updated version of iTunes installed on your computer, to check that Open iTunes on your computer click on Help and then check for updates ( If there is any updates available then Install it ) and If you do not have iTunes Installed or if you want to directly update the version of your iTunes then Download and Install iTunes from here : http://www.apple.com/itunes/download/
    1. Make sure your device (iPad) is unplugged (Disconnected) from your computer (this should be the computer that you use to sync your iPad or you can use any other computer with iTunes installed in it). You can leave the USB cable connected to your iPad though.
    2. Turn off your iPad. Press and hold the power button on the top edge until a slider appears. Slide it from left to right to power off your device. If the slider doesn't appear (because your iOS device has frozen up) then hold the power and Home buttons down until the iPhone or iPad turns off.
    3. Ensure your device has a decent amount of charge. Leave it plugged in to the mains for 10 minutes or so if you see the flat battery icon. (iPad low battery)
    4. Hold down the Home button (the round button at the bottom of your iPad screen) and connect the other end of USB cable to the computer this should cause your iPhone or iPad to turn on. Keep holding the Home button until you see the iTunes and USB cable images on your iPad screen, then release the button.(iPad recovery mode)
    5. In iTunes (launch the application if it isn't running on your Computer), you should see a message saying an iPad has been found in recovery mode.
    6. Click OK and then click on Restore to bring your iPad to Factory settings

  • I have an iPad that is now over twelve months old, it doesn't get over used, however in the last few days, it has started to get very hot after only a few minutes use, is this a fixable issue

    I have an iPad that is now over twelve months old, it doesn't get over used, however in the last few days, it has started to get very hot after only a few minutes use, is this a fixable issue

    Is it getting hot only when charging?
    Not normal. Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • My phone battery can only last an hour. Problem started a week ago while I was in Argentina. I am back in the country now, this morning I left the house with a full battery and when I got to work the phone had shut down. Phone is 7 months old. Why?

    Dear Apple Family,
    I have been using an iPhone since I lost interest with Nokia phones. I fell in love with Apple's innovation, design and technology.  However, I am beginning to lose interest wth the product as well.
    I have an iPhone 5, my phone's battery can only last an hour and the phone is 7 month old.  The problem started last week while I was in Argentina. I had a bad holiday due to this, as I could not make use of the technology because my phone was off most of the time and I had nowehere to charge except to go back to the hotel.  I could not even share pictures on Instagram.  Has anyone ever experienced such a problem?  If so, why and how was the problem fixed?  I am starting to engage in a debate that I have been trying to avoid with my friends.  They say that Samsung is striving and I now tend to agree, and if the problem persists I will gladly join the Samsung family. They seem to make reliable phones.  Sadly, I never experienced this problem with iPhone 3GS & iPhone 4S.
    With Gratitude,
    Thapelo

    Hello,
    If you're in a country where there's an apple shop (unfortunately not mine), go check it and ask the employee about it: he's gonna check your Iphone on a "device"
    I've got an iphone 5 and it's working very well with me but I have to admit that its battery lasts (slower) than my Ipad 2.
    Still i can help with some tips that may improve your iohone's battery by an hour in addition (hopefully):
    - close all apps by multitasking....
    - do NOT keep the brightness to the max
    Believe me you're gonna regret changing your phone to a samsung
    Hope i've helped and sorry for my bad english (has english as 3rd language)

  • Hi please help.virus iPad? I have a iPad 2 , not jail broken, just 2 months old fresh from the apple store. Recently I have been directed to **** sites or a fake bad oink **** application, t

    Re: Mail virus and Trojan issues
    21-Jan-2013 14:58 (in response to Memoire)
    Hi please help.
    I have a iPad 2 , not jail broken, just 2 months old fresh from the apple store. Recently I have been directed to **** sites or a fake bad oink **** application, through various applications. From google chrome app, the photon app and safari.
    I always delete cookies and cache on exit. I use photon and puffin to watch flash player videos on tv series site with links such as put locker. I heard that there is no virus for the iPad but Trojans do exist.
    Pleae help, at first this was just happening with photon app now in 3 different apps, and it is directing me always to the same **** site. I don't watch **** so it's. it from cookies or whatever and my iPad has been randomly turning off and also the videos are working really badly now. Also there is a message red alert staying untrusted site and hacker may be intercepting your device. What is going on? Please help
    Is their a new redirecting Trojan or virus for iPad 2. ? If yes how can I remove it and will it cause permanent damage to my device? How could I have got this virus and in 3 apps. I'm also,worried as I use my iPad to buy things online etc with my credit card. What shall I do?.. Do I restore my device? How do I do that as I cannot connect to iTunes as I do not have a computer, just my iPad. Any help appreciated thanks.

    AlaskanElizabeth wrote:
    Happily- perhaps the most legit tech site on the Internet- cnet:
    http://news.cnet.com/8301-1009_3-57506159-83/apples-ios-and-android-are-new-favo rite-malware-victims/
    They broke a story on sept 4, 2012 titled "apple's iOS, the new favorite malware victims"
    Despite the dramatic title of the article, the only mention of iOS in the body was this:
    Even though malware is increasing in iOS, it still remains relatively low compared with other operating systems.
    And, it provides no examples or other documentation. And, unlike you, I don't consider CNET "the most legit tech site on the internet". I find them to be generally biased in their reiviews and heavily influenced by advertisers.
    http://www.forbes.com/sites/timworstall/2012/06/26/yes-apples-machines-really-ca n-get-viruses
    The Forbes article descibes issues with the Mac OS, of which there always have been some, though certainly far fewer than there have been on the Windows platform. It goes on to speculate :
    All those iPads, iPods and iPhones? Is this going to be a juicy enough target for the virus and trojan writers to at least attempt to attack, even given the difficulty of doing so?
    Again, the Forbes article doesn't mention any current viruses, trojans or malware that exist which will affect an unjailbroken iOS device.
    http://www.huffingtonpost.com/2012/05/15/iphone-malware-kaspersky_n_1515074.html
    And, the HuffPo article quotes Grebennikov thusly:
    "Our experience tells us that in the near future, perhaps in a year or so, we will see the first malware targeting iOS," Nikolai Grebennikov, Kaspersky's chief technology officer, told Computing.
    Again, even Kaspersky doesn't say such things exist now, merely that they might.
    Speculation about what might happen in the future or articles focusing on the Mac OS or Android are not terribly relevant. So, if you do have any other citiations, preferably from a source that doesn't derive most of is revenue from the companies it reviews, that document a virus or trojan that affects an unjailbroken iOS device, I would be interested. I have not been able to find any. I thought, perhaps, as a professional, you might know of some.
    Thank you.

  • I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?

    I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?
    ronald1094

    Try #5.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • My ipad is less than 3 months old but my battery life is not great. What can I do? Within an hour I have lost nearly 30% of battery life

    My ipad is only 3 months old and already just from using pages for about an hour the battery life has gone down by 30%. Is this correct or is there something wrong with the battery life? So much for 10 hour battery life....

    You may  have stuff running that you don't know you hve running. Such as notifications default to on, so you may have a bunch of stuff going out and reaching for info that you don't realize is running. So you can look there, and also look at your mail. If it's set to fetch mails or to push. if it's on push, then y our iPad is reacing out to get the mail all the time.
    So try turning stuff off. but if the battery is still not acting like you want it to, make an appointment at your local apple store and have them run diagnostics on it, just to make sure. they might also be able to give you some tips or find what's draining your power.

  • . It is only 2 months old and never been dropped or near moisture. I've tried holding down both buttons but it remains. It is there regardless of what  app I'm in.

    .i have an iPad air and it has a thin line across the screen. It is only 2 months old and never been dropped or near moisture. I've tried holding down both buttons but it remains. It is there regardless of what  app I'm in. Do I need to take it back to Apple?

    Yes..take it back to an Apple store.
    Barry

Maybe you are looking for

  • How can we print the Stock Transfer Purchase Order

    Hi, How can we print the Stock Transfer Purchase Order?? Because from Transaction ME9L & ME9F, we can print simple PO's like NB, MPR etc..but Stock Transfer PO could not print. Plz guide, from where we can do it...

  • E BCC with Oracle 8i

    Hi I have configured WLPS to Oracle 8i I have also executed the scripts provided with distribution. But still when I access E-BCC and try to create new segments it gives "table or view does not exist" Please tell me what are the tables I have to add

  • Clip envelopes not working CS5.5

    Hey everyone, I've run into an issue where I can no longer adjust clip volume or pan while in multi-track.  I have CS5.5 on both my laptop and my desktop.  It functions perfectly on my laptop, but I can't see any settings that are different between t

  • Db_owner Schema owner

    I wanted to delete a user (no longer with the company) from a database. The delete failed indicating that the user owned a schema.... I found his AD account (no longer in our system) was the schema owner of the "db_owner" schema.  (I plan to alter th

  • Printer will not print goes to save the file xps documents

    Hello, My printer used to work fine but now as I try to print anything it sends me to Save the File as: Save In: My Pictures and has xps documents at the bottom. Can you help me, John