TS1363 Please help..  Locked phone, changed password drunk and woke to have no clue to what new combination...

Hi ..  would highly appreciate some input on how to get into my phone from a forgotten passcode... i was forced to change it last night due to friendly intrusion and hacking..  silly thing is i did it whilst housing a healthy amount of alchohol and once i was to arise i hit my passcode and it didnt work, i then partially remebering going into it to do this but for the life of me cant remeber it.      So now im over it and just wanna fix it..    any ideas or suggestions?
Cheers...

Hi Colonel,
OK, first thing is to make sure that if you are going to be drinking in the future, you separate yourself from your iPhone before the drinking commences.....
Then, follow the instructions in this previous post, and you will be good as new (at least in terms of your password...can't say about the hangover)
If you can't remember your iPhone passcode, hitting the restore button in iTunes followed by restoring from your most recent iPhone backup on the last computer the phone was synced with will reset the passcode. If you do not have access to the last computer the phone was synced with, you will have to force the phone into recovery mode & restore as a new device. All data on the phone will be erased.
Cheers,
GB

Similar Messages

  • TS1363 Please help my phone just went black and will not go on.

    Help my phone went black and do not whant to switch on i bought this phone 3 weeks back vrom a lady and gave my samsung s4 to my wife se will kill me if i ask her for new phone the pone.

    You sure the battery is not out of power?
    Try doing a Restart/Reset.  In this case, it would be the Reset procedure if it does not turn on normally.
    http://support.apple.com/kb/ht1430

  • HT1689 i have my daughters iphone 3, i want to use it as an i-pod, but it keeps receiving messages from some her friends is there a way to stop this from happening, please help, my phone is maxed out and would really like the storage for music, thanks

    i have my daughters iphone 3, i want to use it as an i-pod, but it keeps receiving messages from some her friends is there a way to stop this from happening, please help, my phone is maxed out and would really like the storage for music, thanks

    It sounds like it still has her information on it, so it might be efficient to navigate to Settings, then General, then Reset, then Erase All Content and Settings. You can then set up the phone again, using your information. This way the phone will be yours, officially, and her data and information will be removed.

  • Please help i lost my password( icloud)

    please help i lost my password( icloud) and i can't get it back from (appleid.apple.com) cuz i can't remember the security questions i have ieme and the box if its helps

    swedan93 wrote:
    ... i can't remember the security questions ...
    Forgotten Security Questions / Answers...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers.

  • Please help me to change the password policy in Sun Directory Server 6.0

    Hi,
    Please help me to change the password policy in Sun Directory Server 6.0

    What are you trying to accomplish? Have you at least read the manual?
    http://docs.oracle.com/cd/E19693-01/819-0995/fhkrj/index.html
    As reported in earlier threads on this forum, DSEE 6.0 IS NOT a release you should use in your production environment, specially if you're starting new projects; consider moving at least to the latest 6.x release which is 6.3.1.1.1
    thanks,
    Marco

  • HT4759 Hi Unfortunately I bought a 4s Apple to return the phone to factory settings and now I have the wrong password only I would input password. Please can you help me. thanks

    Hi
    Unfortunately I bought a 4s Apple to return the phone to factory settings and now I have the wrong password only I would input password.
    Please can you help me.
    Grateful

    If you don't know the passcode but have synced with iTunes before while the passcode was set on it, you can back it up then restore it in iTunes on the last computer it was synced with.
    If you haven't synced it while the passcode was set on it, or if you don't have access to the last computer it was synced with, you'll have to force it into recovery mode and restore it as explained here: http://support.apple.com/kb/ht1808.  Then restore to an existing backup if you have one; if not, you'll have to restore it as a new iPhone and start over.

  • HT2497 Hi Unfortunately I bought a 4s Apple to return the phone to factory settings and now I have the wrong password only I would input password. Please can you help me. Grateful

    Hi
    Unfortunately I bought a 4s Apple to return the phone to factory settings and now I have the wrong password only I would input password.
    Please can you help me.
    thanks

    If you don't know the passcode but have synced with iTunes before while the passcode was set on it, you can back it up then restore it in iTunes on the last computer it was synced with.
    If you haven't synced it while the passcode was set on it, or if you don't have access to the last computer it was synced with, you'll have to force it into recovery mode and restore it as explained here: http://support.apple.com/kb/ht1808.  Then restore to an existing backup if you have one; if not, you'll have to restore it as a new iPhone and start over.

  • Help needed - about change password page

    I had created a change password page and successfully connected to the access database via jdbc-odbc bridge. But, there are still some errors with the coding.
    The situation is like that: whether the NewPassword==ConfirmPassword or NewPassword!=CofirmPassword or both blank, there will always pop up a message dialog "The confirm password and new password must be same."(which I wrote in JOptionPane) and will not update the database that i had linked. I try to correct it but fail.
    Can somebody help me to correct the code below?
    Thank you!
    ========================================================================void jButton1_actionPerformed(ActionEvent e) {
    String userid = jTextField1.getText(); //UserName
    char[] passwd2 = jPasswordField2.getPassword(); //NewPassword
    char[] passwd3 = jPasswordField3.getPassword(); //ConfirmPassword
    try {
    connection = getDBConnection();
    if( passwd2 != passwd3 ){
    JOptionPane.showMessageDialog(null, "The confirm password and new password must be same.", "Change Password Fail", JOptionPane.INFORMATION_MESSAGE );
    jPasswordField2.setText("");
    jPasswordField3.setText("");
    else {
    String query = "UPDATE UserInfo SET Password = '"+ passwd2 +"' WHERE UserID='" + userid +"'";
    Statement statement = connection.createStatement ();
    ResultSet resultSet = statement.executeQuery( query );
    int result = statement.executeUpdate ( query );
    if ( result == 1 )
    JOptionPane.showMessageDialog ( null," Password successfully changed", "Password changed", JOptionPane.INFORMATION_MESSAGE );
    else {
    jPasswordField2.setText( " " );
    jPasswordField3.setText( " " );
    JOptionPane.showMessageDialog ( null,"Fail to change password.\n Please reenter the new password.","Fail", JOptionPane.INFORMATION_MESSAGE);
    catch (SQLException sqlex ){
    sqlex.printStackTrace();

    yup, i change as the code as u suggested..the change password page run success but got bugs as below. i don't know the reason. please correct me though the coding. thanks!
    ========================================================================
    java.sql.SQLException: No ResultSet was produced
         at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery(JdbcOdbcStatement.java:255)
         at logintry.DataMiningFrame.jButton1_actionPerformed(DataMiningFrame.java:239)
         at logintry.DataMiningFrame$1.actionPerformed(DataMiningFrame.java:77)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
         at java.awt.Component.processMouseEvent(Component.java:3715)
         at java.awt.Component.processEvent(Component.java:3544)
         at java.awt.Container.processEvent(Container.java:1164)
         at java.awt.Component.dispatchEventImpl(Component.java:2593)
         at java.awt.Container.dispatchEventImpl(Container.java:1213)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
         at java.awt.Container.dispatchEventImpl(Container.java:1200)
         at java.awt.Window.dispatchEventImpl(Window.java:914)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)

  • I have problem with previous billing purchase,now i cant change my credit card because my previous credit card was closed,and there in none selection between the visa mastercard and amex,please help i want to to purchase,and change credit card

    please help me i already input another card and the securitycodes but the device said for assistance,contact iTunes Support at www.apple.com/support/itunes/ww/.
    it doesnt help at all please help me
    i want to purchase and change credit card

    This is a user-supported forum. You are talking to other users here, not Apple. As the advice suggested, contact iTunes Customer Support at: http://www.apple.com/support/itunes/contact/

  • I want to unlock my iphone 4s which is locked with orange france , and now i'm in Algeria and we dont have orange here so what can i do???? help please and thank u

    i want to unlock my iphone 4s which is locked with orange france , and now i'm in Algeria and we dont have orange here so what can i do???? and also , my mic doesnt work with siri and dictaphone, it just work with the camera, help me plz and thank u.

    You will have to contact orange to get your phone unlock.  ONly the carrier that the phone is locked to can unlock the phone.

  • PLEASE HELP  Forgot my admin password for os x Yosemite

    hello every one i really need  help. i forgot my admin password and i really need the stuff which is inside can anyone please help??? i already checked online  but i did not get what  i need cuz  of this photo i did cheek the box of resting my password with an apple id.

    Boot from the Recovery Partition and reset your password from there.
    Here’s how:
    1/ Make sure your computer is completely shut down.
    2/ You’ll have to be quick next: Press the Mac’s power button. As soon as you either hear the loud chime, or see the display light up - usually after a second or 2 - on your keyboard press [cmd] + [r] Keep these keys on your keyboard pressed until you either see an Apple Logo with a loading bar or a spinning gear.
    After a few minutes, you’ll be presented with a Utilities screen. This is the Recovery partition. If this step is already giving you problems, try using a USB-keyboard. It doesn’t have to be an Apple-keyboard. If you have a Windows-tailored keyboard laying around, use the “Windows-flag” key in stead of the [cmd]-key and it should also work.
    3/ Find the menu called “utilities” in the top left corner of your computer’s display. It’s in between the menus “edit” and “window” Don’t be confused with the menu called “os x utilities” 
    Choose Terminal. A somewhat old-fashioned looking window will pop up, waiting for a text command from you. This is the Terminal.
    After the # type: resetpassword and press return. Note that there is no space between ‘reset’ and ‘password’ 
    What you’ll see next is an rectangular window that gives you the option to reset passwords. Set a new password for all the users that you need.
    We’re ready to reboot your Mac now. Click on the Apple Menu and choose “startup disk” Choose to boot from “Macintosh HD” Please let us know if this solved your issue, or if the steps above did not work, or could not be performed for some reason.

  • Please help me to change the language from Danish to swedish i PS CS5

    please help me to change the language from Danish to swedish i PS CS5
    In the program (interfaces) i can only choose Danish

    There is nothing to choose. The language is determined by your serial number and the choice of language during installation. You need to reinstall in that language.
    Mylenium

  • Hi. I tried switching my Apple ID email address to my new email address and I don't know how to switch it for iCloud and iTunes. Please help!! It seems like Apple thinks I have two separate accounts, when I just tried to simply change it!

    Hi. I tried switching my Apple ID email address to my new email address and I don't know how to switch it for iCloud and iTunes. Please help!! It seems like Apple thinks I have two separate accounts, when I just tried to simply change it!

    Settings > Store > Sign Out.
    Sign in with the correct ID.

  • Some apps was installed by another account. Now i want to update by my own account. Please help me in change account to continue the update. Thanks!

    Please help me in change old account to new ones for updating apps! Thanks

    Settings > iTunes and App Store
    Tap Apple ID
    Sign out
    Sign in with correct ID

  • HT201263 Hi I keep getting error 4005 when I attemp to restore my Ipad. Had to restore back to factory settings as my daughter changed password, forgot and I did not back up my ipad to icloud. Help will be appreciated. Kevin

    Hi I keep getting error 4005 when I attemp to restore my Ipad. Had to restore back to factory settings as my daughter changed password, forgot and I did not back up my ipad to icloud. Help will be appreciated. Kevin

    http://support.apple.com/kb/TS5314
    https://discussions.apple.com/thread/5381335
    https://discussions.apple.com/message/23609307#23609307
    more
    https://www.google.dk/search?q=apple+restore+error+4005&oq=apple+restore+error+4 005&aqs=chrome..69i57j69i60.7969j0j7&sourceid=chrome&espv=210&es_sm=93&ie=UTF-8

Maybe you are looking for

  • Calling custom report from seeded spawned program

    Hi, I dont know how to call a custom report(ie.,My own report) when Dunning letter generate is kicked off rather than calling the original programs(ie., Dunning letter print from dunning letter generate etc). thanks in advance.

  • "Lost" TiBook

    For some time now, my TiBook (DVI) has been not working on a regular basis. First I thought it was the HD, then the logic board, and now I am thinking it is either the RAM, or the logic board. The symptoms: 1) Started running slow on everything. 2) C

  • Why does text formatting not copy from RH project to RH project?

    In RoboHelp 9, I'm copying text, from one RoboHelp project to another. How come the text formatting is not retained? The indenting is off and the small Roman numerals and small letters are changed to bullets.

  • QM-Notification: document flow for Customer Return Order

    Hi Experts, I changed actionbox and made an FM to create a Customer Return Order (SD). It works. And now I need the document flow in this QM-Notification, I try it with FM QMLR_CREATE_DOCUMENT_FLOW, but I dont know, where to customize the Object-Type

  • New user having problems!

    Hi ... I used my ipod nano for the first time yesterday, and it worked like a dream ... I bought some songs and connected my ipod and they were all synced fine ... however, earlier I bought a few more songs, a game and a music video, but when I conne