My iPad is disabled and won't connect to iTunes on any computer; I went to my iCloud and removed the iPad so it will erase all data when the iPad is connected to the internet (the original problem was a restrictions passcode we forgot)

Here is the order of what I did to my iPad:
1.  A restrictions passcode was put on and we couldn't remember it.  Despite numerous attempts at righting this, I couldn't. The iPad would not sync with any iTunes on any computer, Mac or PC.
2.  I put a, 'use passcode after one minute' passcode on it and deliberately put in 10 wrong passcodes so it would disable the iPad.  Now it still will not connect to any iTunes.
3.  I connected to my iCloud account and removed the iPad from the cloud; it says it will erase all iPad data when it connects to the internet.  I am fine with that, I need to know what to do now, though. iPad says, 'Connect to iTunes,' but it won't.  Please help this amateur of all amateurs!!

See iPhone DFU mode explained, and how to enter DFU mode.

Similar Messages

  • HT4972 i have iphone 3gs v 4,2.1 i want to upgrade to ios 5 i will erase all data, how can i install again the software, and now my device can not detect to my computer? what can i do? please help me..

    have iphone 3gs v 4,2.1 i want to upgrade to ios 5 i will erase all data, how can i install again the software, and now my device can not  be detect to my computer? what can i do? please help me..

    You can not install iOS 5. It is no longer signed by Apple. You can only install the current version of iOS. For a 3GS, that's 6.1.3.
    However... if you have 4.2.1 on your phone, odds are it is not a 3GS, it is a 3G. If that's the case, you've reached the end of the road for that. It can not run anything higher than 4.2.1.

  • Move a file to external disk and remove the original

    This is a script that was supplied to me on these forums it has been working well, but all the transferring of the files took place locally so a 'Move' command does it eactly what it says, however I now need to move it to an external drive, as a result it leaves trace of the original file.
    How can I make it MOVE and remove the origial File please?
    set fileMatrix to {¬
              {folderName:"BHS", prefixes:{"BH70", "SM70", "AL70", "BH11"}}, ¬
              {folderName:"Bu", prefixes:{"BU40", "BU11"}}, ¬
              {folderName:"Ca", prefixes:{"CW"}}, ¬
              {folderName:"Da", prefixes:{"ES20", "AM20"}}, ¬
              {folderName:"Di", prefixes:{"DV25", "DV11"}}, ¬
              {folderName:"Do", prefixes:{"DJ30", "RA30", "DJ11"}}, ¬
              {folderName:"In", prefixes:{"GT55", "CC55"}}, ¬
              {folderName:"Fr", prefixes:{"FR10", "FR11", "FR17"}}, ¬
              {folderName:"No", prefixes:{"TM17", "NN_"}}, ¬
              {folderName:"Ma", prefixes:{"MA65", "MF65", "FI65", "MC65", "MH65", "MB65"}}, ¬
              {folderName:"Pr", prefixes:{"PR_"}}, ¬
              {folderName:"To", prefixes:{"TM15", "TM11"}}, ¬
              {folderName:"Wa", prefixes:{"WA35", "WA11"}}, ¬
              {folderName:"Se", prefixes:{"SE_"}}, ¬
              {folderName:"Mik", prefixes:{""}}}
    tell application "Finder"
      --set theHotFolder to ((path to pictures folder) as text) & "HotFolderDone"
              set theHotFolder to folder "StudioA:Users:StudioA:Pictures:HotFolderDone"
      --set foldericon to ((path to pictures folder) as text) & "Icons:Rejected Folder Done"
              set foldericon to folder "StudioA:Users:StudioA:Pictures:Icons:Rejected Folder Done"
      --set fakeTrash to ((path to home folder) as text) & "FakeTrash"
              set fakeTrash to folder "StudioA:Users:StudioA:FakeTrash"
    set a to alias "Scratches:Workings"
              repeat with matrixItem in fileMatrix -- look for folder
    set destinationFolder to (folders of a whose name starts with folderName of matrixItem)
                        if destinationFolder is not {} then -- found one
                                  set destinationFolder to first item of destinationFolder -- only one destination
                                  set theFolderName to name of destinationFolder
                                  repeat with aPrefix in prefixes of matrixItem -- look for files
                                            repeat with startFile in ((files of theHotFolder whose name starts with aPrefix) as alias list) -- move files
                                                      try
      move startFile to destinationFolder
                                                      on error
      activate
                                                                display dialog "File “" & (name of startFile) & "” already exists in folder “" & theFolderName & "”. Do you want to replace it?" buttons {"Don't replace", "Replace"} default button 2 with icon 1
                                                                if (button returned of the result) is "Replace" then
                                                                          set {fileName, t_ext} to {name, name extension} of startFile
                                                                          if exists file fileName of fakeTrash then -- and it also exists in the fakeTrash Folder.
                                                                                    set name of file fileName of destinationFolder to "this is a unique name" -- or whatever
                                                                                    set newName to my getUniqueName(fileName, t_ext, fakeTrash)
                                                                                    set movedFile to move file "this is a unique name" of destinationFolder to fakeTrash
                                                                                    set name of movedFile to newName
                                                                          else -- not exists in the fakeTrash Folder.
      move file fileName of destinationFolder to fakeTrash
                                                                          end if
      move startFile to destinationFolder
                                                                else -- "Don't replace"
                                                                          if not (exists folder "StudioA:Users:StudioA:Desktop:Rejected Folder Done") then
                                                                                    set theLastFolder to duplicate foldericon to desktop
                                                                          else
                                                                                    set theLastFolder to folder "StudioA:Users:StudioA:Desktop:Rejected Folder Done"
                                                                          end if
                                                                          delay 0.5
      move startFile to theLastFolder with replacing
                                                                end if
                                                      end try
                                            end repeat
                                  end repeat
                        end if
              end repeat
              try
                        if (count theLastFolder) is 0 then delete theLastFolder
              end try
    end tell
    to getUniqueName(theName, theExtension, someFolder)
         check if someFile exists in someFolder, creating a new unique file name (if needed) by adding a suffix
              parameters -          theName, theExtension : a file name and his name extension
                                  someFolder : a folder (finder item or alias)
              returns :     a unique name
              set {counter, suffixes, divider} to {0, "abcdefghijklmnopqrstuvwxyz", "_"}
              if theExtension is not "" then set theExtension to "." & theExtension
              set theName to text 1 thru -((length of theExtension) + 1) of theName -- just the name part
              set newName to theName & theExtension
              tell application "Finder" to set theseNames to name of items of someFolder
              repeat while theseNames contains newName
                        set counter to counter + 1 -- hopefully there aren't more than 26 duplicates (numbers are easier)
                        set newName to theName & divider & (item counter of suffixes) & theExtension
              end repeat
              return newName
    end getUniqueName

    I do not have the time to read through your whole script and give specific answers, but the general principle is fairly easy.  You're moving with the Finder, so your move command is going to be of the form:
    tell application "Finder"
      move file xxxx to folder yyyy
    end tell
    For cross file system moves (which are as you point out actually duplications) just add a line after each move that sends the old file to the trash:
    tell application "Finder"
      move file xxxx to folder yyyy
      delete file xxxx
    end tell
    the Finder has an empty trash command that you can use at the end of the script if you like.
    One gotcha: because move has two different behaviors, the second code block will throw an error if you try to use if for a local move (it will move the file properly, then try to delete the file it moved, which is obviously no longer there).  For clarity, I'd use duplicate rather than move for if you're working across file systems.  That's what you're actually doing, and if you use the move command you may confuse yourself when you come back to look at the script a year down the road.

  • If I set my iPhone 5 to erase all data when the wrong password is entered 10 times can the phone still be used by another icloud account?

    I'm trying to reset my iPhone 5 back to factory settings and I don't have access to a computer with iTunes. If I set the phone to erase all data after 10 attempts can I still use the phone but under a different icloud account?

    I have the same problem as the emails go to my iCloud account that I cannot access!!! I cannot answer the security questions as someone else must have set up my iCloud account. Nothing seems to work. It would be great if someone has some ideas as what can be done to recover the situation?

  • How do I change a primary admin from Teams and remove the original primary admin?

    I have added another admin to Creative Cloud for Teams, and need to change that user to primary admin, and then remove my Adobe account (the original primary admin) from the Teams group.  Is it possible to do this?

    Currently you cannot change the primary admin on a CCT membership. As a workaround, follow these steps:
    Cancel the existing team membership: You can cancel the membership without any penalty. The accounts for team members change to trial mode. Members can still access their saved data in the cloud storage. To cancel the membership, click theChat Now button at the bottom of this page to initiate chat with a live agent.
    Buy a new team membership; use the Adobe ID for the new primary admin.
    Reinvite team members using the new primary admin account.
    The team members have to accept the invitation and log in to the Creative Cloud Desktop app again. Their apps are activated under the new team account. 
    from adobe... basically... suck it up

  • I WANT TO RESTORE MY IPOD TOUCH AND SET IT TO NEW IPOD WHICH ERASES ALL DATA ,BUT WILL IT DELETE ALL MY PURCHASED APPS AND IF THEY GOT DELETE WOULD I HAVE TO PAY FOR THEM AGAIN???

    PLEASE REPLY.......THANKS

    Hi...
    No...  help here >  Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Make sure you use the same Apple ID used for the original purchases.

  • I added a persona, I've disabled and removed that persona, it keeps coming back. Going into tools does not help, adding a new persona does not help. I'm ready to give up on firefox!

    I added a persona, wanted a new one so disabled and removed the old one. I added a new persona, but the old one keeps coming back. Going into tools/add ons does no good because it is not even listed anymore but keeps coming back. I've shut down/restarted, I've searched for answers to this problem.

    The data that specifies which persona to display is stored as a pref in the prefs.js file in the Firefox Profile Folder.
    Did you try to rename or move the prefs.js file and a possible user.js file to see if that helps?
    Are you using the Personas Plus extension, because in that case you need to check the settings in that extension.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • I found a iPad Mini and would like to return it to the original owner.  I believe it was previously stolen and it cannot be activated.  Any idea how I can get it back to the original owner?

    I found a iPad Mini and would like to return it to the original owner.  I believe it was previously stolen and it cannot be activated.  Any idea how I can get it back to the original owner?

    I am very disappointed (yet I somewhat understand) Apple and how they completely have no interest in helping return lost items.  I don't believe the person who traded me this was from around here so I don't even know where to begin.  I seen on ebay you can sell them for parts but I don't really believe in doing that and would like to at least try my best to get it back to whom it belongs to.  I will be contacting my local police department regarding this but I don't think they will be able to do much if it was stolen from somewhere else.  However if nobody claims it in 90 days and I have a letter from my local police station saying I am the new owner, will that be enough for apple to unhold their policy of proving the item belongs to you?

  • The original exception was: wapsmod.ms.MsAttachFailed: Connect to message server (pdirmba1/3900) failed: MSENILAYER.

    When trying to install an extra dialog instance to our BW environment in the second step when giving the profile parameter after reading the profiles it comes with the message:
    An exception occurred while connecting to the message server instance MBA/DVEBMGS00 on host pdirmba1, port 3900. DIAGNOSIS: The original exception was: wapsmod.ms.MsAttachFailed: Connect to message server (pdirmba1/3900) failed: MSENILAYER.. SOLUTION: Make sure that the message server is started.
    Message server is started as CI and second DI are already running.
    HP-UX, Oralce11.
    Did set the temp directory and SAPINST_USE_HOSTNAME parameter into the environment of root.
    already tried niping from di to ci on the port and thats working ok

    Only that
    When I grep on Error from the file I get
    more sapinst_dev.log |grep error
    Error number 8 error type SPECIFIC_CODE
    Error number 211 error type SPECIFIC_CODE
    pci_error_tolerance_time                 1440  Default      Immed
    Registering Profile directory /usr/sap/MBA/SYS/profile for beeing one of the sources of additional files to be collected in case of errors
    hth72231:mbaadm 25> more sapinst_dev.log | grep error |more
    Error number 8 error type SPECIFIC_CODE
    Error number 211 error type SPECIFIC_CODE
    pci_error_tolerance_time                 1440  Default      Immed
    Registering Profile directory /usr/sap/MBA/SYS/profile for beeing one of the sources of additional files to be collected in case of errors
    Standard input: END
    other
    TRACE[E]   2014-06-25 10:08:17.327 [syuxcuser.cpp:2762]
               CSyUserImpl_setOsInfos(iastring sName, iastring sID, tSyUserInfo& msUserNewinfo)
               lib=syslib module=syslib
    FSL-05014  Command '/usr/sbin/usermod' with parameters '-G "adm,bin,daemon,lp,mail,other,root,sys,users,sapinst" root' failed with return code 8: Login root
    is currently in use
    But that is not the issue

  • HT201274 Hello there, I have erased all data and settings from my IPAD about 10 hours ago and it just shows a line across it with the apple logo, it wont connect to my laptop either. Please help

    Hello there, can someone help me please. I erased all data and settings last night and now my IPAD just shows a line across it with the apple logo. It is not responding to the on / off switch. I have connected the IPAD to my laptop so i can reinitilise it but nothing is happening - it doesn't appear as a device on my laptop (the USB port is working OK) Has anyone else experienced this and how did you overcome it? Thanks

    thanks for the reply gdgmacguy! but is there any way to stop it? i was thinking of just manually uninstalling apps and deleting contacts. i cant wait any longer, lol.

  • I have an old ipod and want to know how to get everything off it and into my iTunes library.  My old computer died and the original library was lost, so don't have any of the content saved anywhere else.

    I have an old ipod (it's the very thin oblong one in purple, the one before the one that does video) and want to know how to get everything off it and into my iTunes library.  My old computer died and the original library was lost, so don't have any of the content saved anywhere else.  I now have an iPhone 5S and listen to music on that, so want to be able to listen to things from the old ipod too.
    Can anyone help please?
    Thanks very much
    Jane

    Apple normally does not get involved in handling lost objects like this.  Since a real name is not installed it will be much more difficult.
    You can try contacting Apple support at the US number, assume you are US going to BWI from the listing: http://support.apple.com/kb/HE57 and explain the situation and see if they offer any suggestions.

  • I deleted some podcasts when I synced with itunes on my computer. They no longer show up on the itunes sync when connected, but are still present on my ipod.  How do I delete them from my ipod?

    I deleted some podcasts when I synced with itunes on my computer. They no longer show up on the itunes sync when connected, but are still present on my ipod.  How do I delete them from my ipod?

    Try swiping your finger across the podcast then tap Delete.

  • I've jail break Iphone 3GS. i tried to restore setting (erasing all data and media) without connecting to computer/itunes. When it starts it freezes by showing apple logo only. what is the solution.

    i've jail break Iphone 3GS. i tried to restore setting (erasing all data and media) without connecting to computer/itunes. When it starts it freezes by showing apple logo only. what is the solution. please help me out. Here i don't have iphone service center too.

    Although not illegal, Apple discourages a user from modifying the iPhone OS in any manner, including "jailbreaking".  Apple feels so strongly about this that discussing methods to assist a user trying to either jailbreak or "unjailbreak" an iPhone are prohibited.

  • I want to install Adobe PageMill 3.0 on my laptop which runs under Windows Vista but cannot because the original input was on floppy discs, and I don't have a floppy disc drive.

    Is Adobe PageMill 3.0 still available? I use it to run three websites but it does not run on my new desktop which has a 64-bit operating system. However it would run on my laptop which runs under Windows Vista. But the original installation was from floppy discs and I do not have a floppy disc drive.

    I am sorry Lcosahedron I am not aware of a download location for Adobe PageMill 3.0.  It appears it was discontinued in 1999.  You can find more details at Adobe PageMill - Wikipedia, the free encyclopedia.

  • I am selling my Mac Mini. I recently purchased OS X Lion. When I restore to factory settings, how can I ensure that the operating system will still be Lion, and not the original operating system, which I believe was Snow Leopard?

    I am selling my Mac Mini. I recently purchased OS X Lion. When I restore to factory settings, how can I ensure that the operating system will still be Lion, and not the original operating system, which I believe was Snow Leopard?

    If you bought Lion from the App Store, you can't legally or practically transfer it, because it's tied to your Apple ID. Reinstall the original software from the discs that came with the machine.

Maybe you are looking for

  • WVC54GCA Config issues

    Hi Linksys, I have V1.00R24 of the firmwar installed.  The PC is a HP Quad core running Vista Ultimate.  Router is a Netgear DG834G ADSL Router (Sorry). Can you please assist with the following? Wireless Setup. I cannot set up the camera with either

  • Quick movements mess up my variables

    I have an interactive map with multiple hotspots on it.  When the user mouses over a hotspot (Button) a value is assigned to a variable (country).  The actionscript (AS2) is also told to go to a frame performing a close sequence on the currently open

  • Missing PDF pluggin

    Hi, It's extremely frustrating that my wife's $300 note book has no problems opening pdfs online. My $3,000 mac can't after spending 5 f***king hours open pdf from the Internet. After trying to download again and again the pluggins from adobe, I'm no

  • My mail account used for sending spams

    Hello everyone, After an unfortunate click I ended on a russian site for which I had no interest. Since then, my mail sends spans to russian addresses. How do I know? I get the mail delivery failures from time to time and it shows an add in russian,

  • Total no. of Posts count - reset

    Hi, My total no. of posts count has been reset and from today morning the count started from "1". Pls Help !! Regards, Sridhar