Is there a way to detect model of iPhone by serial number or IMEI

Is there a way to check model of iPhone by serial # or IMEI #
I'm dying to find out what Apple sent me as my warraty claim, for my iPhone 5. I have heard of many people of late getting the 5s in place of their 5 when they have a warranty claim.

Hi tbednarczyk34,
Thanks for using Apple Support Communities.  This article has information to help determine an iPhone's model:
Identifying iPhone models
http://support.apple.com/kb/ht3939
Cheers,
- Ari

Similar Messages

  • Is there a way to detect a other iphone near me

    Is there a way to detect a other iphone near me with a app or any other functionality of the iphone

    Just any iPhone? or one in particular?
    Find my Friends will allow you to locate people who have iPhones and have explicitly agreed to share their location with you. There are some third party apps which will allow you to locate people as well.
    Other than that, no.

  • Ok i work at a military base and there were iPod touch's given out to some units and I have found one and would like to return it but don't know the owner so is there a way to track a name with the serial number?

    Ok i work at a military base and there were iPod touch's given out to some units and I have found one and would like to return it but don't know the owner so is there a way to track a name with the serial number? Or how can I find out who owns it?

    No. Turn it into the military police.

  • One day i went to go get on Photoshop Elemnts 13 and it said i had to pay for it all over again or do a 30 day free trial, i also forgot what my serial number is, so is there a way i can find out what my serial number is by signing in to my adobe Id?

    one day i went to go get on Photoshop Elements 13 and it said i had to pay for it all over again or do a 30 day free trial, i also forgot what my serial number is, so is there a way i can find out what my serial number is by signing in to my adobe Id?

    Make an appointment at the genius bar.
    If you went without an appointment, then it would make sense that you could be turned away.

  • HT1689 My iTouch was stolen/lost, is there a way that I can track it by serial number?

    My iTouch was stolen/lost, is there a way that I can track it by serial number?  Will Apple let someone register my iTouch when it's already registered?

    UR4ME wrote:
    My iTouch was stolen/lost, is there a way that I can track it by serial number? 
    No
    Will Apple let someone register my iTouch when it's already registered?
    Yes

  • Is there a way to find a license key or serial number for a game purchased in the app store?

    I am trying to find a licensing key or serial number for Psychonauts which I purchased a few weeks ago. I need the key to register it in Steam but can't find it anywhere.
    Any help would be appreciated.
    - Marie

    See:  Do apps from the Mac App Store require activation keys, serial numbers, or registration numbers >  Mac App Store: Frequently Asked Questions (FAQ)
    You can try the developer's forums for help >   http://www.doublefine.com/forums/viewforum/6/

  • Is there a way to detect two keys at the same time?

    Is there a way to detect the keys if the user is holding two keys down at the same time?

    yes, but you'll have to check outside of the event loop (i.e. don't check for it in the keyPressed method).
    just use an array of keys that keeps track of which keys are currently down and which are up. you could use a boolean array but I use an int array because... Im not sure I've just done it probably because of my C background. anyway, basic setup:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class MultiKey extends JFrame {
         int keys[];
         public MultiKey() {
              super();
              keys = new int[256];
              Arrays.fill(keys,0); // 0 = key is up
              enableEvents(AWTEvent.KEY_EVENT_MASK);
              show();
         public void processKeyEvent(KeyEvent e) {
              // the 0xff below binds the key code to below 256
              int key = (e.getKeyCode()&0xff);
              if (e.getID() == KeyEvent.KEY_PRESSED) {
                   keys[key] = 1; // 1 = key is down
              else if (e.getID() == KeyEvent.KEY_RELEASED) {
                   keys[key] = 0; // 0 = key is up
         protected boolean isKeyDown(int key) {
              return (keys[key] != 0);
         protected boolean isKeyUp(int key) {
              return (keys[key] == 0);
    }so now at any time in your code you can check key state by using the isKeyUp and isKeyDown methods. this is about as close as you get to input polling in java unless you use LWJGL or something similiar ;)
    you can try out a full executable example at my site here - just open up the jar and start holding keys down :)

  • Is there a way to detect all the photos already transferred to double (or triple) in iPhoto, so do not occupy space unnecessarily? Thank you from France.

    Is there a way to detect all the photos already transferred to double (or triple) in iPhoto, so do not occupy space unnecessarily? thanks from France

    Look in you main photo library. Are there doubles or triple photos there? If so delete the extras.
    All photos are stored in the photo library. When you move a photo into an album the photo is not duplicated. The album contains a pointer back to the original photos. These pointers or aliases take up very little space.

  • Is there a way to detect motion and set markers automatically?

    My video includes walking around with the camera.  I walk, then stop and hold the camera in one area, then pan, then continue walking (and repeat). 
    While panning, there is some annoying flicker of vertical objects (beams, poles, whatever).  I can use a horizontal fast blur to fix this, but I only want the blur applied when there is panning (not when the camera is relatively still).  Doing it manually is cumbersome.
    Is there a way to detect when motion is going on (over a certain threshold)?  I would like PP to tell me when there is significant motion, and place markers in the points where it begins and ends (when motion goes over a threshold and then when it falls below the threshold).
    Thanks, experts!

    One thing you can try is to bring your footage into Prelude - it will lay out the entire clip so you can see thumbnail snapshots for the whole clip at once - that might give you a good start to see where there is a lot of motion.  Then, you can add markers very easily at all of those points - and when you send it over to Premiere, the markers will show up on your clip. 
    Not automated, but a good workflow to achieve what you are looking for.

  • Is there a way to detect a bad http client handle before it locks up LabVIEW?

    The attached VI demonstrates a simple way to hang LabVIEW such that the only way to recover full use of it is to kill the LabVIEW process. LabVIEW version is 11.0.1f2 and this problem will occur in both WinXP and Win7.
    Is there a way to detect when an HTTP Client Handle refnum is stale and should not be used?
    Is this a known bug?
    Attachments:
    Hang after Bad HTTP Client Handle.vi ‏15 KB

    Have you tried the bad reference comparator?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Is there a way to detect if Excel is busy?

    I have a VI that is testing three products at the same time, and writing data to three different excel spreadsheets.  If more than one subvi is writing to Excel at the same time, I get an error.  Is there a way to detect if Excel is busy, and wait until it is not busy?
    metzler CLAD

    The correct answer is the one that Putnam (and others) suggested: Encapsulate all the logic to perform a single write into a VI that is used wherever you need to write to an Excel file. This structure will guarantee that the code will only be writing to Excel from one place at a time.
    If you don't want to have the different sections of the code waiting for their turn to come up, a variation on the theme would be to create a separate stanalone process that does nothing but write to Excel files. The rest of the code would pass it the data to be written using a queue. With this approach everybody seems to write at the same time, but the standalone process is actually serializing the Excel operations. This approach could even be extended to include the ability to read from files, but that is as they say, "...left as an exercise for the reader..."
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Is there a way to detect the end of a video?

    Is there a way to detect the end of a video.. .mp4 or youtube? I want to be able to detect the end of a video and then have it do something...ie play on timeline or go to and play symbol.

    For youtube the code would be something like this:
    view-source:calkaweb.herobo.com/video.html
    for HTML5 videos for youtube replace &version=3 with &html5=1 in the youtube URL
    I have no idea how to impletent the youtube code into Edge tho other than an iframe but that wouldn't work I've tried :
    http://forums.adobe.com/thread/1285212
    You would need to place all of the youtube codes into edge in order for it to work but I duno how to do that and no1 answered the question in the thread I made about it.
    as for MP4/HTML5 video you can use
    var video = document.getElementsByTagName('video')[0];
        video.onended = function(e) {
          /*Do Something*/

  • My iphone was stolen, I used find my iphone app, and found that it was offline, however when tried locking mode option, I pressed remove device by mistake. Is there any way I can restore the iphone to my icloud/ apple Id again? No manual backup on laptop

    My iphone was stolen, I used find my iphone app, and found that it was offline, however when tried locking mode option, I pressed remove device by mistake. Is there any way I can restore the iphone to my icloud/ apple Id again? No manual backup on laptop

    The phone will automatically re-appear when it connects to the Internet. However, don't get your hopes up, as thieves know this & will make sure your phone never re-connects so you can locate it.

  • HT4623 Is there any way to find a lost iPhone once the phone's battery has expired?

    I have lost my iPhone(4)and the battery is dead. I have the "locate device application", however, I know the battery is dead. To my knowledge, once the battery has expired, it cannot be retrieved using the "lost device/find my device" application.?? Is this correct? If so, is there another way to find this lost iPhone?

    Thanks for taking the time to respond!!
    I didn't think so, but was hoping this was a time, that someone knew something that I didn't.

  • Is there a way to see on my iPhone my entire library (more than 2.000 CDs) without having all the files stored? I've noticed that, for mistake, I had some songs of my library in grey (the mp3 was not working)

    Is there a way to see on my iPhone my entire library (more than 2.000 CDs) without having all the files stored? I've noticed that, for mistake, I had some songs of my library in grey (the mp3 was not working)

    Is there a way to see on my iPhone my entire library (more than 2.000 CDs) without having all the files stored? I've noticed that, for mistake, I had some songs of my library in grey (the mp3 was not working)

Maybe you are looking for

  • IPhoto '09 version 8.1.2. can two macs have the same library?

    I am running iPhoto '09 version 8.1.2 and have an iMac and a MacAir. How do I have one photo library, say on the iMac, that is then replicated onto the MacAir?

  • Mac Mini 1.83/ OS X 10.5.8/ SwitchResX

    Hi Guys! Im using a Mac Mini with a Sharp 37" LCD. DVI-HDMI and my issue is a "black bar" to the right. Fixed it with SwitchResX. works fine with 10.5.6 but since the upgrade 10.5.7 SRX would not work. I mailed Stephane Madrau SRX support and i got t

  • EO_INBOUND_PARALLEL - equally distribute the load

    we have used EO_INBOUND_PARALLEL to increase the number of parallel processes at a single time, but when the processing started we did not see the load is equally distributed among all the Qs, few Qs are loaded more and few are less. Is there any oth

  • Installing Photoshop and Premier Elements 12

    I just purchased the CD-ROM for Photoshop and Premier Elements 12. I already have Elements 8 installed. Question do I do an uninstall of 8 and than do a fresh install of 12? If I do the uninstall are there any remnants of files that might not uninsta

  • What codecs do I need..???

    I recently shot video on the JVC GY-HM100U.  The native files will not open in Premiere Pro CS3. When Trying to open the files or import into Premiere Pro I get a generic error message. What codecs do I need to fix this for the mpg4 format of file th