Problem with (unknown) passcode

My iPad Mini has just started to request a passcode on restart. I think my grandaughter may have inadvertantly set one up, so can anyone tell me how to reset it?

You can't reset it, you can only remove it by restoring your iPad as discussed here: http://support.apple.com/kb/HT1212.  To avoid having to restore it, have her tell you the passcode.  Then you can go to Settings>General Passcode Lock, enter the passcode and turn it off.

Similar Messages

  • HT201365 ahs anyone had a problem with the passcode to iphone after ios7?

    Has anyone had a problem with the passcode to iphone after ios7?

    This link may help with your passcode issues:
    iOS:  Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212?viewlocale=en_US

  • Problem with Unknown account assignment with limit order...reply soon...

    Hello All,
    i am facing problem in <b>confirming the limit order with unknown account</b> <b>assinment</b>.We are using Extended classic scenario with SRM version 5.00 and ECC 6.00. When creating shopping cart with unknown account assignments,  shopping carts is getting created fine but when processing goods receipt the system only prompts for distribution by cost center and we do not have the option to selected processing against other account assignment e.g. internal order or network. the Cost center is coming as gray.What i am expecting that as in known account assignment it asks for a drop down and user can select cost center or order the same should happened with unknown account assignment. we have not implemented any badi for the same.
    please help me out. <b><u>Is this a standard behavior of shop with limit order for unknown account assignment where it prompts for cost center only or do i need to implement any badi.</u></b>

    Hi
    <b>Related links/ SAP OSS Notes to check out -></b>
    Note 861889 - Limitations on limit and service PO's in case of ECS
    Note 1046593 - Limit PO - Unable to delete and create new item
    Note 966323 - Service Item: Not able to create PO in ERP backend
    Note 969077 - LIMIT:SC with Account Assignment Unknown and IR_IND checked
    Note 1000184 - Account assignment error when document transfer to back end
    Note 1052892 - Account Assignment not visible for Limit Shopping Cart
    Note 933618 - Multiple account assignments for limit item are lost
    Re: Limit PO(Item category D instead of B)
    SE 518 No account assignment exists for service li ne 0000000000
    Creating SC with Dummy Account Assignment
    Re: Account assignment on SRM
    Re: Problem on account assignment
    Re: Account details not coming while creating a Shopping Cart with Limit Item
    LIMIT SC
    <u>Other related details -></u>
    Use Screen variants (Transaction - SHD0) to change item overview and search result screens.
    BADI - There is one BADI to hide/show some SC item creation links, there is one BADI to control screen details of PO, CTR... but not SC (and not external screens).
    So, as usual, identify the template and change the HTML code in SE80.
    To implement a more complex logic, like the default check box, change the ABAP code (usually in the PBO), if required.
    Do let me know.
    Regards
    - Atul

  • Tunneling and problem with unknown host exception

    hello! i've got a problem with https. i use jdk 1.5.0, jboss-4.0.4.ga-patch1, soap.
    and i'm going crasy.. i've testet my client code at our network and it works fine. but if i want to get jobs from the server of our customer, my client throw an "unknown host exception: firm".
    i wonder why it hasn't the full host. the url may look like this: https://firm.sub.com:443/ and while the client connects to the server, i depugged it and the host is correct: firm.sub.
    but after the connection, when the client want to get something from the server (when it wants to communicate with the server over soap) it crashs.
    my client code looks like this:
    private ClientInterfaceEndpoint getClientInterface() throws ServiceException {
    QName serviceQName = new QName(DOCSERVER_NAMESPACE, CLIENT_INTERFACE_SERVICENAME);
    URL wsdlUrl = getClientInterfaceWsdlUrl();
    log.info("*******WSDLURL host: " + wsdlUrl.getHost()); // out: firm.sub
    log.info("*******WSDLURL port: " + wsdlUrl.getPort()); // out: 443
    URL mapping = getClass().getClassLoader().getResource("META-INF/DocumentServer_Mapping.xml");
    log.info("*******MappingURL path: " + mapping.getPath());
    if (wsdlUrl.toString().toLowerCase().contains("https")) {
    if (null == getConfig().getTruststore() || getConfig().getTruststore().equalsIgnoreCase("")) {
    throw new RuntimeException("No or incorrect TruststorePath in the docclient-config");
    File tmp = new File(getConfig().getTruststore());
    if (!tmp.isFile() || !tmp.canRead()) {
    throw new RuntimeException("The truststore at the 'TruststorePath' isn't a file or can't be read.");
    System.setProperty(SYS_PROPERTY_KEY_TRUST, getConfig().getTruststore());
    System.setProperty(SYS_PROPERTY_KEY_TRUST_PW, config.getTruststorePass());
    ServiceFactoryImpl factory = null;
    factory = (ServiceFactoryImpl) ServiceFactory.newInstance();
    Service clientInterfaceService = null;
    try {// create the service for the ClientInterface
    clientInterfaceService = factory.createService(wsdlUrl, serviceQName, mapping, new URL(config.getServerURL())); //, new URL(config.getServerURL())
    log.info("*******ClientInterFaceService WSDL URL Host: " + clientInterfaceService.getWSDLDocumentLocation().getHost()); // out:firm.sub
    log.info("*******ClientInterFaceService WSDL URL Port: " + clientInterfaceService.getWSDLDocumentLocation().getPort()); // out: 443
    } catch (ServiceException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (MalformedURLException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (Exception e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    }// getting the ClientInterfaceEndpoint
    ClientInterfaceEndpoint clientInterface = (ClientInterfaceEndpoint) clientInterfaceService.getPort(ClientInterfaceEndpoint.class);
    return clientInterface;
    protected URL getClientInterfaceWsdlUrl() {
    URL url = null;
    String urlString = getConfig().getServerURL() + CLIENT_INTERFACE_URI + "?wsdl";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty(SYS_PROPERTY_KEY_PKGS);
    if (handlers == null) {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS);
    else {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS.concat("|").concat(handlers));
    try {
    url = new URL(urlString);
    log.info("*******URL host: " + url.getHost());
    log.info("*******URL port: " + url.getPort());
    log.info("*******URL path: " + url.getPath());
    } catch (MalformedURLException e) {
    log.fatal("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString);
    throw new RuntimeException("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString, e);
    System.setProperties(properties);
    return url;
    }if it's usefull: the customer use a apache server (not tomcat) where a the server is and the client at another system the jboss.
    The customer told me: if i want to connect the client via http i have to tunnel.. maybe i have to tunnel using https too?
    have i to generate the endpoint classes a second time, extra for https?
    or doesn't soap like host like "firm.sub"?
    can anyone help me please?!
    sorry, my english isn't very well...

    sorry, it's not the same error. The output is: Unable to connect to any host due to exception: java.net.socket.exception: java.net.socket.exception: Unregcognized windows socket error: 10106: create.

  • HT2693 New Ipod accidentally locked with unknown passcode - have tried restore thru I Tunes but nothing will unlock or cancel passcode - any suggestions?

    New Ipod was accidentally locked with an unknown passcode - have tried restore process in I Tunes but still cannot unlock passcode - any suggestions?

    You'll need to put it in dfu recovery mode, then do a restore.  That will set it back to it's "out of the box" condition, without a password, then you can sync with iTunes...Here is an article that describes the process...
    http://osxdaily.com/2011/01/16/forgot-iphone-passcode-how-to-reset/

  • Still problems with "unknown server error"

    I followed the solutions in document (linked posted by Ken G Rice on 23/07/13) but am still getting "unknown server error" when attempting to sign in to Creative Cloud from my desktop. I'm using Mac OS 10.8.4. Would that cause a problem?

    I spoke with Gold Support. One assumption after the conversation is that ConCast(Comcast) is throttling me. The upload times out. It does end up correct on my iPad in Adobe Content Viewer and I have since sent this issue to the App store and all is well. Even with these update issues happening the whole time.
    I cut larger stories in to smaller chuncks for tests. They worked in pieces but then a certain section would not after it worked earlier. I've had smaller stories work fine for a couple of updates then all of a sudden would not. Then they would work gain on the 3rd retry.
    Add any video of any size and I can count on the error message.
    They content is making it to your servers but I'm getting error messages but when I get the error message it is usually right at the spot you see above in my attached image.
    I need to talk with Comcast and see what they have to say and take it from that point. I need to get this figured out. I burned too much time dealing with it.
    Thanks,
    Ron
    Fly & Light Tackle Angler

  • Iphone6 problem with unknown caller id

    I am having the same problem.Have spent numerous hours between AT & T as well as Apple trying to have the problem fixed.
    I am a caregiver for my parents. Their phone number as well as their doctors are coming up as unknown. Also having big issues with
    connecting to my car. Disconnects, won't reconnect, then have to shut off the Bluetooth just to receive a call from the phone.

    I have an ATT phone and this was happening to both myself and my husband. What we did was go to settings, cellular, Enable LTE, and change the check mark from Voice & Date to just Data. apparently VOLTE which is a fairly new service for carriers is not working in the manner that it is supposed to with these phones. Until they get it right, I'm leaving the check mark on data only. We tested this and saw the numbers go from unknown to what number what actually coming in.

  • How to unlock an iPad with unknown passcode?

    Hi!
    After a lot of waiting I was given an iPad Air from my local government because of my involvement in local politics. I believe it is so they can send out
    meeting papers on email and not have to spend a lot of money on making a lot of copies and sending out masses of paper.
    I have not been impressed by their tech guy, he left the iPad in reception for me to pick up(on Friday), I forgot to check the contents of the box so it was weekend before I realised the charge cable was missing. On Monday(yesterday) he left a cable in the reception on city hall for me to pick up.
    So I charged the iPad and attempted to use it and found it had a passcode that he had not given me. I find this a little strange as he had expressed surprise that the cable was missing as "he had not charged it". Someone must have used it for there to be a code set.
    Now he is on christmas holiday and have not responded to my sms asking for the code.
    I had hoped to use the iPad to Skype grandparents over christmas as my iMac is downstairs in my office and my laptop have pretty much given up.
    Is there any way to get around the passcode when it is an iPad that I have not had synced to my iMac before?
    Thx and merry christmas.
    Howie

    Troublesome problem but there's an easy fix. I just started a teaching job and my school issues all teachers a laptop and iPad. The previous owner of my iPad had set up a passcode and I was able to reset the device with the following steps:
    1. Turn off the device,
    2. Connect the USB/charging cord to only your computer (don't connect to the iPad).
    3. Press and hold down the home button on the iPad just before plugging in the USB connection to your computer.
    4. Keep the home button held down until the iPad shows a screen with the connection cord and an arrow pointing to the iTunes logo.
    5. Your computer should bring up a small iTunes window asking if you want to "restore" the device.
    6.   ...restore the device.

  • A Problem with "Unknown controlller �MD21�

    Hi ! Goog morning
    Please,
    I have been looking for some solution at sunsolve.com, for the following problem which took place after the installation of solaris 10 in a SFV440.
    Unknown controller �MD21�- /etc/format.dat (15)
    Unknown controller �MD21�- /etc/format.dat (20)
    Unknown controller �MD21�- /etc/format.dat (167)
    Sunsolve states, the following work around:
    Work Around: Manually remove MD21 entries from format.dat following upgrade
    The description is:
    Description: The MD21 EOF has been completed. A class action script is required to ensure that the correct format.dat entries are removed on an upgrade to S10 or format will spew annoying messages about an unsupported controller type.
    I understand that at first i need to remove MD2 entries in /etc/format.dat ( Can I edit this file?)
    After i �m going to run a class action script, (Where can i get these script?)
    Thanks

    Is this an e-book? Does it allow for copying? It is possible that the pdf file is a scan of a book?

  • HT201263 i've a problem with the passcode unsure why its not recognised it and the pad recovery mode is not working, really worried that unable to get back into the ipad what can be done

    Hi can any one help, I've done any update and put a passcode and its not recongising it on the ipad and know its disabled.  I've followed the recover mode a number of time and it keeps saying ipad  could not be resorted, An  unknow error occured (3194). been trying for hours please help

    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
    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 cancelling 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.
    ~~~~~~~~~~~
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    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
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
     Cheers, Tom

  • Y40-80 problem with unknown driver windows 8.1

    Updated with latest bios available yesterday does not fix problem. Has anyone solve this?

    Dear assuat,
    Try to install the below driver it might help to solve your issue.
    http://support.lenovo.com/us/en/downloads/ds032367
    Hope this helps. Do post back if the issue persists.

  • I have problem with my passcode

    hi there , I'm buying Ipad Mini before some hours and I have put passcode. after one hour and the passcode didn't work . I tried my passcode and the Apple ID password and didn't work. my device (Ipad mini 4G)

    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support

  • HT1212 Restrictions came on with unknown pass code.  I did not turn it on and no one had access to my iPhone

    "Restrictions" suddenly turned "on"  with unknown passcode.
    No one had access to my iphone
    how do I unlock "Restrictions"

    First, the restrictions would NEVER turn on by itself. And second, this is a passcode set up manually by the user. If you can't remember, the only way to remove this is restoring your iPhone to factory conditions using iTunes.

  • Problem with PnP devices, Unknown device, error code:28

    Hello, my USB Mass Storage Device Not Recognized( Flash drive- HP v156w, 16 GB)
     Full story : I opened flash disk,  started  to loading and opening files very slow, suddenly all writing, names of the files become unreadable. I took off the flash disk and try again. I got the message- disk have to be formated to be used
    again. After a lot of try I got this message:
     Unknown device doesn't have a driver ; and Problem with PnP devices when i run trouble shoot in devices and printers on my Sony VAIO laptop( Windows 8, 64 bit), and error code:28 for unknown device doesn't have a driver.
    Do other usb devices work ok in the same usb port? - yes
    Has someone else/or you used it on another pc?- yes
    Does it work ok on a different pc?  - the same problem
    Did you pull it out with using 'Safely Remove Hardware'? -  yes, a lot of time after its become invisible, unknoun
    Was it previously working ok with your W8 laptop? - never tried befor
    Disk Management can't see the drive.
    device manager:
    usb device with yellow sine and instead name strange sines
    divice tipe - other devices
    manufacturer - unknown
    location- on USB Mass Storage Device
    status: The drivers for this device are not installed. (Code 28)
    To find a driver for this device, click Update Driver.
    I have done that -
      "open device manager make sure show hidden devices is ticked and right click on all the USB hidden devices and unistall them. once done reboot and put in the flash drive again and see if windows finds it."
    situation the same(((( Disk Management can't see the drive.
    please if any one know the fix please help
    Its very important info for me on the flash disk.

    I'd ask them over here.
    http://answers.microsoft.com/en-us/windows/forum/windows_8?tab=Threads
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Unknown device - ipod nano fine - problem with windows xp and usb root hub

    Greetings all. I've seen this question come up over and over again and have been working on it following previous posts and posts on microsoft and hp sites for a couple of days now.
    First off - the ipod nano is fine. Works on my son's computer well.
    When I plug it into my 6 months new HP Pavilion laptop it says: 'found new hardware' and goes through the process of installing it, says it's been installed, but then shows 'unknown device'. In Device Manager it tells me there are no drivers installed, but when I try to follow the other instructions on this forum to update the drive to USB mass storage device (usbstor.inf), it tells me the best driver is installed and won't do it.
    Many seem to have this problem with devices other than the iPod on Windows service pack 2 so I went to the Microsoft forums and they seem just as puzzled. I've updated all my Windows & HP software to the latest possible versions. The problem is definitely in the USB. Once, when I uninstalled the USB device and then rebooted the computer with my iPod still plugged into the port, it found my iPod, correctly identified it, and for a blissful moment I thought everything was fine! Then it reinstalled the USB drivers and made a comment to the effect that I should move the iPod to a USB 2.0 port for more effective operation and the iPod disappeared again.
    I have 3 USB ports on my laptop, all are USB 2.0 and all 3 have the same problem.
    I've tried all the stuff people have already said on here...does anyone have any NEW ideas? I'm hesitant to take it in for service because it seems to be a software problem that should be fixable.
    Thanks in advance for your help and sorry about the long post.

    This isn't a solution, but it's something I just tried and it may provide someone additional clues about's going on. I too think this is some sort of USB problem.
    I have 6 USB ports. Two of them are USB 2.0. Since I applied the 03-23 update my computer hasn't recognized my nano at all. I would connect my nano and I couldn't get it to show up in My Computer, in iTunes, or on the far right side of the Start taskbar.
    I just tried plugging my nano into the first USB port of my USB 2.0 pair and left the second 2.0 port empty. I then rebooted with the nano attached. Viola - I get a "Found New Hardware Apple iPod USB Device" message. My nano is now flashing "Do Not Disconnect." A small removeable storage icon with green arrow now shows on the far right side of the Start taskbar. If I click on it (like you're going to eject it) the note displayed says "Safely remove USB Mass Storage Device - Drive (F:)".
    If I go into My Computer, "Removeable Disk (F:)" now shows there. However, if I try to follow Trevor's instructions in another post to "go into My Computer with iPod connected, right click it, wait till the right click menu comes up (could take a few minutes); click Format, . . ." I'm stuck. I do the right click, watch the hour glass and wait for the Format menu to come up but it never does. Eventually the hour glass just goes away. No message, no Format menu. The waiting hour glass just goes away.
    My computer isn't as new as yours, but like you I am completely current on maintenance.
    I'm going to keep trying . . . If anyone has any ideas, please let me know.
    Dell Dimension 8100 Pentium 4   Windows XP   Service Pack 2 Phoenix ROM Bios PLUS Version 1.10 A09

Maybe you are looking for