How can I know if I am the first user of a supposed to be a new iPhone 5s?

I have bought a new iPhone 5s 64GB from a shop that import iPhones independently from Europe.
The box was open by the custom, as the shop owner told me.
I had found so far that the iPhone production date was July 2014.
Is there any option to find if I am the first person that activate the iPhone?
Thanks,
Amnon

I have put the serial number and that what i have get;
No remarks when taping on the Case activity and Repair Activity.
Now what is the meaning of the information above?

Similar Messages

  • How can I show album art in the mini player when playing songs from a plugged in iPhone?

    How can I show album art in the mini player when playing songs from a plugged in iPhone?
    When I play from my phone and switch to the mini player it's always showing the music notes in the thumbnaill. It'd be nice if it could get album art off of the phone.
    I'm on iTunes version 11.0.4.4

    He @mracole,
    it is very nice that you post a solution to complete the library with artwork for album's that do not have an artwork. Your solution perfectly addresses the problem for assigning artwork, BUT this thread is about CHANGING artwork for albums already uploaded into iTunes Match. Just try to replace for example a blue artwork cover for an album with a red one. If you made it in a simple way (without deleting the album from iTunes Match and local changes on the files with an external ID3-Application or 2 or more iTunes libraries on different Mac's) this is the right place to give a solution. I really tried for hours to change the artwork to make them visible in landscape cover flow mode on my iPhone5. In rare cases I made it, but then the covers sometimes where restored to the old onces - exacly how it is mentioned by Starhawk
    As long as there is no simple way to change the cover of an iTunes Match stored album (you can change title, artist and so on without hitting "update iTunes Match" over all distributed Library on different devices - this date will be synchronized almost instantly) I considered the behaviour from iTunes as BUGGY! For me the local artwork cache (and if there is any iCloud artwork cache - I don't know) do not interfere with iCloud. Even when I delete the whole local cache (album artwork music - everything) I do not manage to change the artwork.
    Regards from Munich, Germany

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • How can I get Mail to capitalise the first letter of a sentence?

    Hello all,
    this is my first time using apple Support Community.  i am a new apple user and have just got my first MacBookPro (its wonderful).  however, i am having some difficulties. 
    How can i get Mail to capitalize the first letter of a sentence and also capitalize 'i' as 'I' automatically?
    Also, how can i get apps like Pages to do the same? and for that matter typing into internet sites like this one? look at the lack of automatic punctuation!!
    Thank you all for any advice and tips you may have. 
    Paul.

    I don't think whether it's easier or not is really an issue.  The problem is that all of these wonderful technologies are taking away our understanding of how to communicate in writing.  It's not a matter of being lazy and not "wanting" to do it, but rather getting to a point where many people "can't" do it.
    I certainly wasn't pointing any fingers.  I use a calculator (or computer if I happen to be on one at the time) to do the most basic math calculations.  I can be out to lunch with co-workers and we have to pull out a calculator to split a bill 4 ways.  I went through school at a time when calculators were not permitted.  So, at one time, I could have easily done all of that stuff in my head.  So far as math goes, my mind has turned to mush a long time ago.  I doubt I could work my way through a long division problem at this point... even if I sat there and really tried.
    Computers were not generally consumer items when I was growing up.  So I didn't grow up in a world with spell checking.  I have certainly grown to use it though and I'm sure my ability to spell properly has diminished somewhat because of it.  I tend to be less careful when typing something out.  If I'm not sure of the spelling on something, I just let my computer either fix it or give me a suggestion for the corrected spelling.  Fortunately, I grew up having to rely on my own ability to spell, so with that foundation, I tend to do fairly well when it comes to spelling.
    We're at a point now where systems can correct grammar and sentence structure.  I think all of these are great tools to help us out, but they shouldn't be used to take the place of actually knowing how to do things.  Having said that, I'm fairly sure that is exactly what will happen.  Just as today, I rely almost entirely on some form of electronics for everyday math, I'm sure people growing up today with expert systems able to correct everything will rely on those equally.

  • HT201272 Had some wifi issues while downloading an album. First 3 tracks... sound stops way early but continues the count. How can I tell iTunes to redo the first 3?

    Had some wifi issues while downloading an album. First 3 tracks... sound stops way early but continues the count. How can I tell iTunes to redo the first 3? Any way to just fix it?

    Hey davma1
    All you need to delete the songs then go through the process of downloading the past purchase again.
    Deleting files from the iTunes library and your computer
    http://support.apple.com/kb/ht3842
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • HT6154 I bought iCloud storage a few months ago and now I want to buy some more, how do I know when I purchased the first one?

    I bought iCloud storage a few months ago and now I want to buy some more, how do I know when I purchased the first one?

    Read here:
    http://support.apple.com/kb/HT4874
    What happens is your existing plan gets canceled, & you're charged a pro-rated amount.

  • I have monthly subscription app how can i know about who cancel the supscription ?

    i have monthly subscription app how can i know about who cancel subscription ? and how i can calculed the monthly revenue ?

    Apple20141 wrote:
    Or open sim tray and find out the carrier ring the carrier and give them numbers on sim
    The carrier will not give out information about the owner of the phone.

  • How can I know WHICH cookie in the list is the one I want to delete?

    OK, an unwanted, annoying cookie pops up.
    I go to the list of cookies in the Privacy section but I can't IDENTIFY the NAME of the cookie I want to delete.
    How can I tell its name?

    See also:
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies
    You can check to cookies for the domain in the currently selected tab:
    *Click the "Site Identity Button" (globe/padlock) on the location bar
    *Click "More Information" to open "Page Info > Security"
    *Click "View Cookies" to view the cookies for the domain in the currently selected tab
    Also make sure that you do not get confused by messages from BetterPrivacy.
    *https://addons.mozilla.org/firefox/addon/betterprivacy/

  • How can I know if I have the Latest Version of LiveType?

    Warning, this falls into the "I'm stupid so this is a stupid question" category.
    How can I check to see if I have the latest version of LiveType?
    Currently I have version 2.1
    It came with my Final Cut Express -- my FCE version reads 3.5.1
    I tried software update, I tried the LT and FCE menus. Any ideas?
    Thanks.

    You have the latest version of LiveType; the information here will be updated shortly after any future updates.
    (23832)

  • How can I get Numbers to return the first row in a group of VLOOKUP query results instead of last one?

    I'm trying to query from one table (call it Table1) a batch of rows in another table (Table2) using VLOOKUP on a date specified in the first table (Table1). My problem is it's returning the last incident in Table2 of the requested date instead of the first incident. This really breaks the OFFSET scheme I'd like to use to collect the rest of the items for that date. Is there some way to compel VLOOKUP to return the first row of query results, not the last?
    NOTE: I see I've asked this before, but forgot to go back and look at responses given. It's been a while and I've limped along until now with the way things were. I'm actually trying to delete this questions, so if you see it, ignore it. I suppose if someone can tell me real quick how to delete a stupid question, that might be helpful.

    you cannot delete a post yourself.  You can flag the post an request a moderator remove.

  • How can I login to iTunes for the first time with apple ID which already exists, without my credit card

    I`ve got an appleID. And now I want to enter iTunes Store. But it asks me to write my credit card number(Visa/MasterCard/Amex) But I don`t have such a card. So I can`t log in. How can I log in without this card???

    Hi 6323540,
    In order to use an Apple ID without a credit card in the iTunes store, you will want to change the payment information associated with that Apple ID. See the guidelines in this article -
    Change or remove your payment information from your iTunes Store account (Apple ID)
    http://support.apple.com/kb/HT1918
    If you have not yet created an Apple ID and went to create one without a credit card, follow the steps in this article -
    Creating an iTunes Store, App Store, iBooks Store, and Mac App Store account without a credit card
    http://support.apple.com/kb/HT2534
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Time Capsule and Time Machine: How can I force Ethernet Connection for the first backup ?

    Hi,
    How can I force the Time Capsule - Time Machine Couple to communicate via an Ethernet cable for the initial backup without changing the wi-fi configuration of the Time Capsule?
    I do not want to change the wi-fi configuration of the TC because it appeared that I was not able to restaure it proprerly after a first "ethernet backup".
    Please note that I do not want to use my TC to extend my wi-fi network nor create a new one. But, when I disable the wi-fi on the TC, as I want to restaure it, I only can see "expend" or "create a network" options within the wirless config page of AirPort Utlity; "Connect to a network" is not shown in the list!
    Thx a lot for your attention,
    François
    MBP 15' mid-2010
    OS X 10.8.2 (12C54)
    Time Capsule end-2011 (2TB - v7.6.1)

    You MUST change the TC mode to something other than join a wireless network.. because in that mode, TC turns off the ethernet ports. 
    The join a wireless network is hidden option because apple do not support it and it works poorly.
    You can access it by holding down the option key.
    You can also save the current settings and restore them after you finish the ethernet backup.
    Please note using join means double hop wireless and your TC data speed to the Mac will be extremely slow.. this will also affect your other internet connections and any other computers on the wireless network as it will use most of the capacity for much longer period than directly connecting to the TC.
    Basically that is why Apple do not support it.. it is lousy way to work a TC in a network.

  • How can I make firefox switch to the first open window as soon as I click on it on the taskbar.

    I'm running Windows 7 and when I click on Firefox on my taskbar and I have more then one window open, Firefox forces me to choose which window I want to go to. I would like it to always assume I want to go to the first window. How can I change this?

    Go to Tabs in Options and uncheck ''Show tab previews in the Windows taskbar.''

  • How can i use a breakpoint on the first project ?

    This is a screenshot of my solution with two projects.
    But the breakpoint will work only on the second one the TestScreenshot but i want to be also to use a breakpoint/s on the Capture project. Tried to make that the Capture will be scope Scope to This but it didn't change anything.

    It's not in a release mode.
    The first project the upper one the Capture is set to class library and Active (debug)  Active (Any cpu) Any cpu
    The second project the TestScreenshot is windows application Active (debug)  Active (Any cpu) Any cpu
    I can use a breakpoint/s on the TestScreenshot but can't use breakpoint/s on the class library project.

  • When opening a published folio, how can I always default to launching the first article

    Currently, when our app is launched or open from the iPad, it opens on the last article I was on. I would like the app to always open from the "first" article in the folio. Is this possible?

    There's no way to do this automatically. You can add a button or hyperlink on your pages that navigates to navto://relative/reset and that will return the content to the first page, first article, but it isn't automatic.
    Neil

Maybe you are looking for

  • Help, how do i find out the host server for a website i have inherited

    hi i inherited responcibilty for a website, simply because there was noone else avalable. i have dreamweaver cs3, but only about 2 weeks worth of knowledge and experience. I was given info ie. ftp address and username etc, so have been able to downlo

  • Create .jspx page to add users using ADF security.

    Hello, I'm using JDeveloper 11.1.1.3. I've created a login page (form based) with different users and roles using ADF Security. I'm able to successfully login/logout through the users and get redirected to the home page. However, i'm asked to create

  • Apple bluetooth keyboard and Magic Trackpad are sluggish and constantly disconnecting - I'm in pain

    Dear Apple, Bluetooth issues are damaging my job as I rely on external display and periphery. The connection is not interrupted too often like it was before 10.10.3, but it still does, and when it doesn't - the performance is very sluggish. If you ca

  • Drillthrough report access

    Hi There, I use Essbase studio 11.1.1.3 developing the drillthough report and I am able to drill through in Excel Add-in without any issue. However User cannot drill through from their excel addin, it got "report is not defined in the intersection" w

  • Problems during startup NWDS

    Hello Experts, Need your help:  I got an error "Problems during startup, Check the ".log"....." when starting NWDS.  I checked .log, here is the errors: org.eclipse.core.internal.boot.DelegatingLoaderException: org.eclipse.core.runtime.CoreException: