Can I find out who ownes an IPod that was found at our place of business

We found a an IPod which appears to a Nano Version that was left behind at our place of business.  Is there a way to get it back to the person if they don't call about it?

Unfortunately there is not.
Reporting a lost or stolen Apple product
B-rock

Similar Messages

  • How can I find out who downloaded an app

    We have several people who use the same iTunes account how can I find out who downloaded an app

    Yahoote wrote:
    We have several people who use the same iTunes account how can I find out who downloaded an app
    Ask them.  Unless they are a bunch of fibbers, you can easily find out.
    Also, note that many things about iTunes work better when there is one account per person.  Consider going that way. 

  • I found a nano on a trail. How can I find out who the owner is?

    I found a nano on a trail. How can I find out who the owner is?

    Check the device for identifying information, and take it to the local police station.
    (125623)

  • TS3376 how can i tell if someone is logging into my find my iphone account and how can i find out who it is?

    how can i tell if someone is logging into my find my iphone account and how can i find out who it is? Can I add a second layer of password security for Find My iphone?

    Nobody can log in to your iCloud account unless you gave them your password. There is no other way.
    If you shared your password with someone (not a good idea) and no longer want them to have access to your account, change the password and don't share it again.

  • How can you find out what generation your iPod touch is?

    How can you find out what generation your iPod touch is?

    Hi,
    Here is help for the operating system:
    If you are locked to iOS 3 then you have an iPod Touch 1st Gen.
    If you are locked to iOS 4 then you have an iPod Touch 2nd Gen.
    If you are locked to iOS 5 then you have an iPod Touch 3rd Gen.
    If you are locked to iOS 6 then you have an iPod Touch 4th Gen.
    If you can get iOS 7 and have an iPhone 5 sized screen [bigger] you have the current iPod Touch 5th Gen.
    I assume since it says you have iOS 5.1.1 you have an iPod Touch 3rd Gen.
    Also, you may want to sync it so iTunes can tell you or you can look at the model number on the back.
    Hope this helped.

  • How can I find out who created or which id created the Essbase app. Is there any file where can i go and check to see?

    Hi All,       
                   Do you guys know how can I find out who created or which id created the Essbase app. Is there any file where can i go and check to see?
    I am on UNIX and 11.1.2.2
    Thanks all.

    Don't think that information is kept anywhere.
    This is how the log will look like during app and db creation
    [Fri Aug 02 13:35:55 2013]Local/ESSBASE0///9036/Info(1051001)
    Received client request: Get Extended Application Info (from user [celvin@Native Directory])
    [Fri Aug 02 13:36:04 2013]Local/ESSBASE0///8072/Info(1042059)
    Connected from [fe80::a531:1592:875b:3873]
    [Fri Aug 02 13:36:04 2013]Local/ESSBASE0///8072/Info(1051001)
    Received client request: MaxL: Execute (from user [celvin@Native Directory])
    [Fri Aug 02 13:36:06 2013]Local/ESSBASE0///5432/Info(1042059)
    Connected from [fe80::a531:1592:875b:3873]
    [Fri Aug 02 13:36:15 2013]Local/ESSBASE0///8072/Info(1051061)
    Application test loaded - connection established
    [Fri Aug 02 13:36:15 2013]Local/ESSBASE0///8072/Info(1054027)
    Application [test] started with process id [4324]
    [Fri Aug 02 13:36:15 2013]Local/ESSBASE0///8072/Info(1056010)
    Application test created
    [Fri Aug 02 13:37:22 2013]Local/ESSBASE0///6972/Info(1051001)
    Received client request: MaxL: Define (from user [celvin@Native Directory])
    [Fri Aug 02 13:37:22 2013]Local/ESSBASE0///6972/Info(1051001)
    Received client request: MaxL: Fetch (from user [celvin@Native Directory])
    [Fri Aug 02 13:37:28 2013]Local/ESSBASE0///4520/Info(1042059)
    Connected from [fe80::a531:1592:875b:3873]
    [Fri Aug 02 13:37:28 2013]Local/ESSBASE0///4520/Info(1051001)
    Received client request: MaxL: Execute (from user [celvin@Native Directory])
    [Fri Aug 02 13:37:28 2013]Local/ESSBASE0///4520/Info(1054014)
    Database test loaded
    [Fri Aug 02 13:37:28 2013]Local/ESSBASE0///4520/Info(1056020)
    Database test.test created
    Regards
    Celvin
    http://www.orahyplabs.com

  • HT3702 HOW CAN I FIND OUT WHO CHARGED MY CREDIT CARD FOR ITUNES

    How can I find out who used my credit card for itunes

    Call your bank or credit card company.

  • I'm having network security issues, how can I find out who has been seeing my information on my laptop

    How can I find out who has been loging on or attached to my network and on to my computer remotly.

    Dartrath--
    Please give us much more pecific information as to why you think someone is doing this?
    What signs and symptoms are you experiencing?

  • My iPod had gotten lost and now someone has re-registered it in their name, how can i find out who it was?

    PLEASE HELP ME FIND MY IPOD OR FIND OUT WHO RE-REGISTERED IT!

    - When a second person registers an iPod, the iPod gets deleted from Your Support Profile. That is all you know.
    - The SN will only help idenify the iPod if it is recovered.
    - Apple will not help at all.
    Reporting a lost or stolen Apple product

  • Can I find out who has opened a document in Sharepoint 2013 document library?

    Is it possible to use PowerShell you find out who opened a certain document in a library in a users MySite? Or can I interrogate the audit logs?
    I also have Harepoint installed, but I don't know if this works to a MySite document level?

    Hello Alex,
    Just save the file with .ps1 and run with Powershell.
    you just need to enter the URL and Path as per your liking.
    $rows=@()
    $url ="https://SP2013.com/"
    $site = New-Object Microsoft.SharePoint.SPSite($url)
    $webs = $site.AllWebs
    foreach($web in $webs)
    $listCollections = $web.Lists
    foreach($list in $listCollections)
    if ($list.BaseType.ToString() -eq "DocumentLibrary")
    $dList = [Microsoft.Sharepoint.SPDocumentLibrary]$list
    $items = $dList.Items
    $files = $dList.CheckedOutFiles
    foreach($file in $files)
    $wuse = $file.DirName.Substring($web.ServerRelativeUrl.Length)
    #Write ($web.Url+ "`t" + $wuse+"`/" + $file.LeafName +  "`t" + $file.CheckedOutBy.Name + "`t" + $file.TimeLastModified.ToString()+"`t" + "No Checked In Version"
    $row=New-Object System.Object
    $row|Add-Member -MemberType NoteProperty -Name "Web Url" -Value $web.Url
    $row|Add-Member -MemberType NoteProperty -Name "WUSE" -Value $wuse
    $row|Add-Member -MemberType NoteProperty -Name "File Name" -Value $file.LeafName
    $row|Add-Member -MemberType NoteProperty -Name "Checked out by" -Value $file.CheckedOutBy.Name
    $row|Add-Member -MemberType NoteProperty -Name "Last Modified" -Value $file.TimeLastModified.ToString()
    $rows+=$row
    $web.Dispose()
    $site.Dispose()
    $rows|Export-Csv -NoTypeInformation -Path "D:\Rahul.csv"
    Thanks and Regards Rahul Dagar

  • How can I find out who has had unauthorised access to my iCloud account

    I have received an email to say that someone has accessed my iCloud account.  How can I find out details of who has done this ?

    You can't.  All you can do is change the password to deny future access.
    Are you sure the email is legitimate?  There have been numerous reports recently of forged emails like this trying to get people to click a link and disclose thier iCloud credentials.  Be sure you don't do this.  If you want to change your password, go to Apple's site here: https://iforgot.apple.com/password/verify/appleid?app_type=ext&app_id=93&languag e=AU-EN.

  • How can I find out who is mining my software for information about me??

    Companies are taking my personal information and using it for pop-ups and other advertizements. How do I find out who is phishing for my information and how do I stop that?

    There are a few things you can do:
    Install Lightbeam to see what websites and services you interact with on the web, even the ones you can't see. http://www.mozilla.org/lightbeam/
    Install Adblock Plus, https://adblockplus.org to block unwanted ads online.
    Run anti-malware software to remove anything malicious on your machine [[Troubleshoot Firefox issues caused by malware]]
    Make sure you keep your computer (Windows, Firefox, anti-virus, Plugins, etc.) up to date to protect your security.

  • How can you find out who an iCloud email address is registered to?

    I have been being harassed by someone with an iCloud email address and I was wondering if there is any way to find out who it could be registered to, or at least an IP address?
    Thank you in advance.

    Realize too that is it very easy to fake a sender email address.  Using the e-mail address to identify the harasser would be as reliable as reporting a harasser on the street to police and telling them the person had told you their address was 300 Smith Avenue.

  • How can i find out who called me

    I had a message left on my phone this morning but they didn't leave a number for me to call back. I called 1471 but someone else had rung after the message. Is there any way of finding out who called my number today?

    The CALL LIST will contain the last 50 calls along with the numbers if available ie not with held I think is about page 29 in the manual titled Caller display and call lists
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me

  • How can i find out who signed into itunes with my id

    Someone signed into an iPhone4 with my info last night. i have an iPhone5. How can i find out who

    BTW, just checked through my email history and I can't find a similar message to yours. I recently had my iPhone 3GS replaced with an iPhone 4 so if there is an official alert program in place I should have received something like it. I think we can be reasonably confident that it is a scam. If you used any link in the email to visit what you thought was an Apple site, and signed in, then you should definitely change your password from within the iTunes application. Store > View My AppleID > Top Edit link.
    tt2

Maybe you are looking for

  • Open VI Reference Cant find Control

    Unless... Starting from the beginning, I am running LV2009. I am opening a reference to a functional global VI running on a remote computer to get the value that is in its' front panel indicator. I have two problems. The first is that when I use a st

  • My scan disk isnt formatted for my macbook pro, how can i open it?

    Does anyone know how to open a windows formatted flash drive on macbook pro? Nothing I tried worked! It contains an important conference I attended. I am new to Mac & in need of skills Thank you in advance... Message was edited by: Phoenix_13

  • Virus, Malware, Opera in my Mac OS folder. is this normal?

    I find this odd. I have found Opera in my OS file. 1 i have never knowingly download opera 2 nor have i knowingly installed it 3 why would it not be in the apps folder? any ideas?

  • LW 4/600PS and Mac Os 10.4.3

    I've just upgraded from Mac OS9.2 to Mac OSX 4.3. I have a LaserWriter 4/600PS which worked well with 9.2 via an AsanteTalk box and an Ovislink Ethernet router (My internet modem uses this too). With 10.4.3 no printer is found or recognised. Does any

  • Using and accessing  AOL

    Hi I seem to be having problems opening my AOL account via Safari.They dont appear to have a contact number either.When I try to login the address keeps changing repeatedly from - webmail.aol.com to my.screen.name.aol.com and back.then I get the foll