How to unblock my Ipad? (forgot password 4 numbers)

When I want to Use my Ipad I first have to unlock with a password (4 numbers), BUT  " I forgot this password" and now it is TOTALLY blocked. How can I unblock it ? I want to use it offcourse ? Please let me know... thank you

If you've forgotten the passcode then you will need to connect the iPad to the computer that you normally sync to and you should then be able to reset the iPad and re-sync your content to it (http://support.apple.com/kb/HT1212) - you may need to put the iPad into recovery mode in order to be able to reset it : http://support.apple.com/kb/ht1808
If you do it via a different computer then :
If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.

Similar Messages

  • HT4623 how to unlock my ipad forgot my password

    how to unlock my ipad/forgot my password

    Follow the instructions here >  iOS: Forgotten passcode or device disabled after entering wrong passcode

  • I need to restart my iPad , forgot password and it is now disabled

    I need to restart my iPad mini from scratch, it has been wiped clean and disabled on ITunes. I want to know how to restart the iPad and put a new password in , connected to iTunes and don't know where to start.....

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

  • How do I create a "forgot password" and "forgot username" Form?

    Good Day,
    I am in need of assistance in learning how to create a "forgot password" and "forgot username" form in DW CS4.  I have researched Adobe and the Internet and I am coming somewhat empty on tutorials or step-by-step instructions.
    I would appreciate any step-by-step instructions, a link to a good online tutorial, or any other related source that can help me get from beginning to end.
    Thank you.

    Hope this work for you...
    What kind of web programming do you use for? If you use PHP MySQL, you can do it easily.
    For example I use a MySQL Table called "admin":
    CREATE TABLE IF NOT EXISTS `admin` (
      `id` int(10) NOT NULL AUTO_INCREMENT,
      `name` varchar(64) NOT NULL,
      `email` varchar(64) NOT NULL,
      `username` varchar(64) NOT NULL,
      `password` varchar(64) NOT NULL,
      `activation` varchar(64) NOT NULL,
      `level` int(2) NOT NULL DEFAULT '0',
      `date_registered` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
    INSERT INTO `admin` (`id`, `name`, `email`, `username`, `password`, `activation`, `level`, `date_registered`) VALUES
    (1, 'Andoyo', '[email protected]', 'andoyo', 'andoyo', '8e67d638c0d130a4d66b2888ffc8335b', 0, '2011-09-21 10:32:16');
    Make two files, they are:
    forgot_password.php, contain form and php mail function
    error.php, a redirect page if the mail function doesn't work.
    And then, use your Dreamweaver to make a recordset, called: rsForgotPassword
    Click Insert > Data Objects > Recordset
    Name: rsForgotPassword
    Connection: adobe_cookbooks
    Table: admin
    Columns: All
    Filter: email, Form variable, =, email. Use form variable to pass the value from the form.
    Click OK
    Use if function to make the forgot function work perfectly, for example:
    If the email is entered correctly, the mail script will run
    If the email doesn't exist in the database, the notification will come out
    If they open the page directly, they have to type any keyword
    Final example:
    forgot_password.php
    <?php require_once('Connections/adobe_cookbooks.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;  
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsForgotPassword = "-1";
    if (isset($_POST['email'])) {
      $colname_rsForgotPassword = $_POST['email'];
    mysql_select_db($database_adobe_cookbooks, $adobe_cookbooks);
    $query_rsForgotPassword = sprintf("SELECT * FROM `admin` WHERE email = %s", GetSQLValueString($colname_rsForgotPassword, "text"));
    $rsForgotPassword = mysql_query($query_rsForgotPassword, $adobe_cookbooks) or die(mysql_error());
    $row_rsForgotPassword = mysql_fetch_assoc($rsForgotPassword);
    $totalRows_rsForgotPassword = mysql_num_rows($rsForgotPassword);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p>Forgot your password:</p>
    <?php if (isset($_POST['email']) && ($row_rsForgotPassword['email']=="")) {
      $colname_rsForgotPassword = $_POST['email']; ?>
    <p>Email doesn't exist in our database</p>
      <?php }elseif (isset($_POST['email'])) {
      $colname_rsForgotPassword = $_POST['email'];
      $username = $row_rsForgotPassword['username'];
    $password =$row_rsForgotPassword['password'];
    $to = $row_rsForgotPassword['email'];
    // Mai function
    $subject = "Your username dan password: ".$row_rsForgotPassword['name'];
    $body = "<html><body>" .
                        "<h2>Thank you...</h2>" .
                        "<p>This is your username and password:</p>".
                        "<ul><li>Username=".$username."</li>".
                        "<li>Password= ".$password."".
                        "From: Webmaster www.javawebmedia.com";
    $headers =           "From: Webmaster www.javawebmedia.com <[email protected]>\r\n" .
                                  "MIME-Version: 1.0\r\n" .
                                  "Content-type: text/html; charset=UTF-8";
    if (!mail($to, $subject, $body, $headers)) {
              $redirect_error= "error.php"; // Redirect if there is an error.
      header( "Location: ".$redirect_error ) ;
      ?>
      <p>Thank you, your username and password has been sent to your email.</p>
      <?php }else{ ?>
      <p>Please type any keyword.</p>
      <?php } ?>
    <form id="form1" name="form1" method="post" action="">
      <p>
        <label for="email">Your email:</label>
        <input type="text" name="email" id="email" />
        <input type="submit" name="Submit" id="submit" value="Submit" />
        <input type="reset" name="Reset" id="submit2" value="Reset" />
      </p>
      <p>The username and password will be sent to your email.</p>
    </form>
    <p></p>
    </body>
    </html>
    <?php
    mysql_free_result($rsForgotPassword);
    ?>
    error.php
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    Oops, error page.
    </body>
    </html>

  • HT4623 how do i unlock iphone forgot password

    How cani disablemyiphonw forgotmy password?

    If you cannot remember the passcode, you will need to Restore your device...
    Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808

  • How to unlock my iphone forgot password

    I forgot my password and now my phone is locked , what do i do?

    You will need to try to restore your iDevice from the same computer that you most recently synced to.
    Read this: http://support.apple.com/kb/ht1212
    If you can't do the restore then you will need to try Recovery Mode.
    Read this: http://support.apple.com/kb/ht1808
    Follow the instructions very carefully.

  • How to unblock and ipad 2

    my ipad is showing that ipad is deactivated connect to itunes, but try different options can get activate

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • How to unlock keypad with forgot password in nokia...

    My little brother has a Nokia 3120 phone. He entered password to keypad lock. But now he has been forget. Is there a way to unlock keypad. Plese help.

    If you forget or lose the lock (security) code, try first the default lock code 12345. If it is not accepted, contact the nearest Nokia Care point to unlock your device.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How to create forgot password feature

    How can I create a "Forgot Password" link on the apex login screen that asks for users email address or userID and resets their password to a random one and emails it to them..

    I think we took the wrong path, that wont work out. I was looking at the APIs and found that we can change the user at run time.
    I think this should work..
    1. create login page as public
    2. In case password reset, grab the user name and change the current user as any admin user using the API Procedure SET_USER( p_user IN VARCHAR2)
    http://download.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/api.htm#BABIBIBH
    3. Now that you have the admin user , you know the current user's ID and you know the API to change the password for a particular user
    APEX_UTIL.RESET_PW(
    p_user IN VARCHAR2,
    p_msg IN VARCHAR2);
    http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_util.htm#insertedID69
    I think these if you work around these steps you could build change password fuctionality.
    Thanks,
    Manish

  • HT201441 i receive your support thru (forgot password) email.the problem now is i cannot open the file using my  ipad.because its asking for apple account and the problem is forgot password and security details when i make apple id.im the owner

    apple, my prroblem now is i cannot open the ios diagnostic using my ipad. the screen shows hello,language,and countrry.and sign in.the email address
    that i'm using before to sign in.and to activate my ipad (forgot password) is stiill i'm using now.i'm the owner of his gadget.i recieve ios diagnostic thru email send by apple.is there any other way to open this support.i'm using now my windows8 laptop,and i havve a new apple id.tnxs

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple. I don't know where you originally posted this question, but it's only just appeared in the Using iPad forum.
    If you can't remember your password then you can reset it via http://iforgot.apple.com
    If you can't get it reset via that site then you will have to contact Support in your country, they should be able to reset it for you (they can also reset your security questions if you've forgotten their answers).
    Contacting Apple about account security : Contact Apple for help with Apple ID account security - Apple Support
    If your country isn't on that page then try this form to contact Support : https://www.apple.com/emea/support/itunes/contact.html

  • TS3772 forgot password on my ipod touch

    looking to learn how to unlock ipod touch, forgot password! please need help!!!!!!!!!!!!!!

    I think you need to restore the iPhone by connecting to your computer via USB and selecting Restore next to the Check for updates button on the Device Summary page.

  • Imei blocked by apple how to unblock the imei

    imei blocked by apple how to unblock the imei

    Apple cannot block IMEI-numbers, only carriers have the ability to do that. Contact your carrier for more help.

  • HT201263 i forgot password of icloud and i did restore with itunes and again it wants password, so now i cant do anything, i forgot e-mail password which is sending e-mail address. so i cant use my ipad, what can i do? how can i change i cloud address wit

    i forgot password of icloud and i did restore with itunes and again it wants password, so now i cant do anything, i forgot e-mail password which is sending e-mail address. so i cant use my ipad, what can i do? how can i change i cloud address without old

    Is your phone still signed in with your old iTues ID for iCloud (in Settings>iCloud)?

  • My daughter got an iPhone 5c and forgot the password to unblock the phone. How can unblock it?

    My daughter got an iPhone 5c and forgot the password to unblock the phone. How can unblock it?

    If you cannot remember the passcode, you will need to Restore the device...
    1)  Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Forgot password on ipad mini, how can i open it

    forgot password on ipad mini, how can i open it

    There are instructions on this page for resetting a device when you can't remember its passcode : http://support.apple.com/kb/HT1212

Maybe you are looking for