My mini has a password on it now that I have iOS 7   I do not know the password. Nor will it let me restore since it has find my mini in iCloud. How can I restore and take off the password

My mini has a password on it now that I have iOS 7   I do not know the password. Nor will it let me restore since it has find my mini in iCloud. How can I restore and take off the password

Sounds like then maybe a "friend" got hold of your phone and set a SIM card password.  Not much you can do if that is the case if you do not know the password except go to your carrier and request a new SIM card.

Similar Messages

  • Now that I have a landscape video (didn't know I had to go thru a sequence to have landscape vs portrait output to my computer) how do I fix the video I have.  It is a wedding and there is no do over.

    I'm having a problem with a sideways video.  After reading these posts I find you have to do some sequence to view the video on your computer.  However, now that I have a sideways video (didn't know I had to go thru a sequence to have landscape / portrait output to my computer) how do I fix the sideways video I have.  It is a wedding and there is no do over. 

    There are many video editing programs that will rotate the video.  However, note that the aspect will also be rotated and the fram will either be higher than wide or you will have black bars on the sides/some parts cut off.

  • Just bought a new iMac, with Lion, for my wife.  When is was wifi with her old iMac on line with it's printer, HP C6200, no problems printing.  Now that it is by itself it does not recognize the C6200...It recognizes my laser hp 1012 and laser hp 6300

    Just bought a new iMac, with Lion, for my wife.  When is was wifi with her old iMac on line with it's printer, HP C6200, no problems printing.  Now that it is by itself it does not recognize the C6200...It recognizes my laser hp 1012 and laser hp 6300 but will not print to them wanting an autenication

    How is the C6200 connected to the iMac, is it via USB or Wi-Fi? If it's via Wi-Fi please make sure it's connected to the router using the printer's Network Wizard. Then click System Preferences - Print & Scan and assuming the iMac is on the same network as the printer, if it is the printer should be seen. If it's not then click the + sign and add the printer. Apple provides instructions in Printing Overview OS X Lion

  • [svn:fx-trunk] 5465: Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains .

    Revision: 5465
    Author: [email protected]
    Date: 2009-03-20 11:52:56 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains. Jim ok'ed the addition of the new FxNumericStepperTextInputSkin.mxml class into the spark.skins and wireframe packaged.
    SDK-18275, SDK-19849
    Reviewer: Glenn
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18275
    http://bugs.adobe.com/jira/browse/SDK-19849
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperTextInputSkin .mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperTextInputSkin. mxml

    Revision: 5465
    Author: [email protected]
    Date: 2009-03-20 11:52:56 -0700 (Fri, 20 Mar 2009)
    Log Message:
    Now that padding set on a TextInput does not affect the inner textView, we need to add a custom TextInput skin for the TextInput a Spark NumericStepper contains. Jim ok'ed the addition of the new FxNumericStepperTextInputSkin.mxml class into the spark.skins and wireframe packaged.
    SDK-18275, SDK-19849
    Reviewer: Glenn
    Checkintests: Pass
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18275
    http://bugs.adobe.com/jira/browse/SDK-19849
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxNumericStepper.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperTextInputSkin .mxml
    flex/sdk/trunk/frameworks/projects/wireframe/src/wireframe/FxNumericStepperTextInputSkin. mxml

  • How can I capture and take screenshots of all the browser tabs and not only windows ?

    This class identifies all minimized windows and take a snapshot (screenshot) of them. I want to take screenshots also of all the broswer for example chrome tabs windows that are open but not in the front. Same idea that it get now the minimized windows but
    to get the screenshots of the broswer opened tabs ! What should I change in the WindowSnap class? Since both classes are a bit long I added them to pastebin.com
    What i'm doing now is to get all the minimized windows i mean all the the windows in the back if it's chrome browser windows or open tabs if it's program games other windows. This is what i'm doing in form1 constructor:
    this.listBoxSnap.Items.AddRange(WindowSnap.GetAllWindows(true, true).ToArray());
    int numitems = this.listBoxSnap.Items.Count;
    for (int i = listBoxSnap.Items.Count - 1; i >= 0; i--)
    string tt = listBoxSnap.Items[i].ToString();
    if (tt.Contains(" ,"))
    listBoxSnap.Items.RemoveAt(i);
    listBoxSnap is just a regular listBox1 in my form1 designer.
    And this is the WindowSnap class code, it's a bit long code but it's all connected:
    I'm not sure what to show here from this class what is the most important part so i added all the class code to a link to pastebin.com:
    WindowSnap.cs
    What i'm calling/using in form1 constructor from this WindowSnap.cs class is the GetAllWaindows method:
    public static WindowSnapCollection GetAllWindows(bool minimized, bool specialCapturring)
    windowSnaps = new WindowSnapCollection();
    countMinimizedWindows = minimized;//set minimized flag capture
    useSpecialCapturing = specialCapturring;//set specialcapturing flag
    EnumWindowsCallbackHandler callback = new EnumWindowsCallbackHandler(EnumWindowsCallback);
    EnumWindows(callback, IntPtr.Zero);
    return new WindowSnapCollection(windowSnaps.ToArray(), true);
    EnumWindowsCallBackHandler is:
    private delegate bool EnumWindowsCallbackHandler(IntPtr hWnd, IntPtr lParam);
    EnumWindows is:
    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool EnumWindows(EnumWindowsCallbackHandler lpEnumFunc, IntPtr lParam);
    Then i have the class called WindowSnapCollection:
    WindowSnapCollection.cs
    The problem is in form1 constructor i'm getting only 23-24 windows in the listBox1. When i'm doing this two lines:
    this.listBoxSnap.Items.AddRange(WindowSnap.GetAllWindows(true, true).ToArray());
    int numitems = this.listBoxSnap.Items.Count;
    I see in numitems about 30 windows and after filtering i'm getting 20 windows and i checked that's the correct number of opened minmizied windows i have in this example 20.
    Now what i want to do is somehow to get with all this windows in the listBox also all the opened tabs in chrome.
    For exmaple i have only 4 opened chrome windows. But in one of the chrome windows i have almost 40 tabs opened !
    I want somehow to add to the listBox all this opened tabs also as captured screenshots like i'm doing now with the windows.
    This is a screenshot of my program showing what i'm doing and what i get:
    So now i have 19 windows captured in the next refresh it will show 20.
    My question is if there is any way to capture also all the chrome opened tabs in all the windows if any opened tabs are opened at all ? Now i'm getting only the chrome opened windows captured screenshot. But i want to get also the chrome tabs captured screenshots.

    Hi Chocolade1972,
    Since this forum is discussing about Windows Forms general like winform controls, and your issue is related with Windows Desktop SDK, I will move this thread to the more related forum.
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Ive just bought an ipod 5th gen and it has find my ipod on it how can i get past it

    hi all ive just bought an ipod 5th generation off ebay and it has find my ipod on it is there anyway off me getting around it as the seller isnt replying

    No; the activation lock is an anti-theft measure, and Apple won't help anyone other than the original owner(assuming they're alive) bypass it.
    Ask eBay for a refund.
    (111212)

  • I have an account that the email address live, but they stole my account and changed direccionn email to Gmail but now that I have new email in gmail not in me finds the account or reconose me the key and create another account, but the Musia that havi bo

    had a live email account, but the account was stolen and opened an email account in gmail and made the change by hour account but I do not recognize this and create another account with the same email, but in the other account had purchased music, as I can do to recover purchased music.
    The previous Cunta I have it open on a pc but the pc is not mine

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact Apple ID Support, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Now that I have iOS 5.1 and iTunes 10.6, neither device is visible in iTunes, wired or wireless

    I did the upgrade wirelessly on iPad2 and a wired upgrade on iPhone4, and then upgraded the iTunes app on my Desktop.  Now I get no error and hitting the sync wirelessly, or when plugging it in, but I also don't see the devices in iTunes.
    I searched the forums and found a few things with iTunes barking about not recognizing apps, and refusing to sync.  And I tried some of the remedies for that, restarting the devices and iTunes, but no help there.
    Everything else appears to work fine.  I've also upgraded daughter's iPhone, and hope that this can be resolved before she notices that it's broken.  Eeek.

    Something I rarely do, but a reboot of the mac was required to get iTunes and the iPhones/iPad talking despite the fact that nothing said it was required.

  • My alarm clock doent sound now that I have 7.0. Any body know why? how to fix it?

    my alarm clock doesnt sound since I updated to 7.0 .. how do i turn up the volume so my alarm isnt silent?

    I found that what worked to correct this issue on my iPhone 4S was to turn off automatic app updates. I went to Settings - iTunes & App Store - and under Automatic Downloads, switched Updates to off. My apps that were stuck in 'Waiting' immediately began downloading.
    Although I would like to be able to use the automatic update feature, at least I found a fix to the 'waiting' issue for now.

  • I recently signed up for the free 30 day trail of PS. After about a week or so my computer crashed and I lost everything on it. Can I cancel that trial and start it over now that I have another computer?

    My computer crashed after about a week or so into the free 30 day trail of Photo Shop CC. (Also I had downloaded the free 30 day trial of Adobe Audition on same computer.) Can I cancel both of those and start over now that I have another computer?
    Thanks!
    Thomas

    Copy the entire iTunes folder from your backup to /Music/ on your computer.

  • IPhone 5s will no longer sync to iTunes now that I download iOS 8.1.2

    iPhone 5s will no longer sync to iTunes now that I downloaded iOS 8.1.2 I get the message that it "failed to sync because the sync failed to start." Doesn't work with cable or over WiFi. Anyone else having this problem? Any suggestions?

    Before connecting your device to iTunes to sync, double-click the Home button, and close all open apps by sliding up on the thumbnails until all open apps are closed. Then try the sync again.
    Cheers,
    GB

  • I was trying to get the iOS 8.2 on my iPhone 5 but then it stopped and my phone is now on recovery mode I have pictures I need and they did not all fit on iCloud  how can I use the phone again with ALL my pictures and videos without restoring it?

    I was trying to get the iOS 8.2 on my iPhone 5 but then it stopped and my phone is now on recovery mode I have pictures I need and they did not all fit on iCloud  how can I use the phone again with ALL my pictures and videos without restoring it?

    Contacts are designed to be synced to a supported application on the computer or a cloud service.
    Pictures taken with the device are designed to regularly be copied off the device to a computer as would be done with any digital camera.
    If you have failed to use the device as designed it may be too late to recovery anything.
    Is the device regularly backed up to a computer via iTunes?  If so, the most recent backup (when restored to a replacement iOS device) should contain all contacts and pictures as of when the backup was created.

  • I forgot my password for my email, then I cant remember my passwordfor my icloud, how can I reset my password If I feed the wrong birthday for my email/account... Now my account has been disables.. please please please please help me

    I forgot my password for my email, then I cant remember my passwordfor my icloud, how can I reset my password If I feed the wrong birthday for my email/account... Now my account has been disables.. please please please please help me

    You will have to call Apple and speak to someone in account security.

  • I used my appleid on my husband's phone.  Our contacts merged and our phones both ring and he sees my texts. I deleted his contacts from my phone and they deleted from his phone also.  How can I get my appleid off his phone and restore his contacts?

    I used my appleid on my husband's phone.  Our contacts merged, both phones ring and he sees my texts.  I deleted his contacts from my phone and they deleted from his phone also. How can I get my appleid off his phone and retrieve his contacts?

    Teacher48 wrote:
    I used my appleid on my husband's phone.  Our contacts merged, both phones ring and he sees my texts.  I deleted his contacts from my phone and they deleted from his phone also. How can I get my appleid off his phone and retrieve his contacts?
    Bad mistake. You shouldn't have used your Apple ID on his phone. And you made it worse because now the contacts are gone, as you deleted them from your phone, they got deleted on iCloud. Your husband should have his Apple ID.
    There is really no way of recovering the deleted contacts unless you backed up using iTunes and even then you will only be able to recover those contacts that were on a call list. Read here:
    iTunes: About iOS backups

  • How can I get my ipod off zoom, it wont allow me to go accessibility and now i cant even type in my password

    How can I get my Ipod off of ZOOM

    Did you try triple-clicking the home button? That usually turns it off.

Maybe you are looking for