I lost my ipod touch 4g and I have find my iphone on but I dont know how to find it. I need some help to track my stolen ipod touch 4g.

I need some help to track my lost ipod touch 4g

If you set up the Find My iPod service prior to the iPod going missing, then there is a chance that can be tracked, though it depends on a number of factors (the iPod is turned on, connected to a WiFi network, and has not had the Find My iPod service disabled or the iPod been completely restored). 
If you did not set up Find My iPod, then there is no way to track it. Contact the police in case someone turns it in, and change any passwords for any online accounts you may have used from your iPod (the iTunes Store, for instance). 
Regards.

Similar Messages

  • After upgrading my software i have seem to have lost all my contacts and photos, i did a back up but i have no idea how to get them back on? maybe im illiterate but i dont know how to find it in my itunes? please help!!

    After upgrading my software i have seem to have lost all my contacts and photos, i did a back up but i have no idea how to get them back on? maybe im illiterate but i dont know how to find it in my itunes? please help!!

    http://support.apple.com/kb/HT5824?viewlocale=en_US&locale=en_US

  • I have recently started using icloud and since my last back up i have lost my notes im sure they are in here but i dont know how to find them HELPPPPP

    I have lost my "notes" from my phone, PC, ipad and when i go into backup i cant find them , any help would be appericated....

    Hi t.romano91,
    Welcome to the Support Communities!
    I'm not sure why you had to manually enter your contact information, but if you created and turned on your iCloud account, the information should be there.
    The link below will give you a general overview of iCloud, and how to look at your contacts:
    iCloud Help: Contacts overview
    I've also included the User Guide for the iPhone below to help you get started ...
    Please note that the Contacts App (looks like a brown address book) is located inside the Utilties folder on your home screen.  Press and hold the Utilities folder and it will jiggle.  Then drag the Contacts App out onto the home screen for easier access. (see page 20 of the guide below).
    manuals.info.apple.com/en_US/iphone_user_guide.pdf
    Page 100 - 102 explains how the Contacts feature works.
    Enjoy your new iPhone!
    Have a great day!
    - Judy

  • Can I dropped triggers and recreate them? Dropped is easy but I dont know how to recreate them. I need separate proc to drop and recreate triggers to avoid deadlock issues in package.

    drop  triggers---
    CREATE PROC [dbo].[SP_DropTriggers] 
    AS
    BEGIN
    DECLARE @Table_Triggers SYSNAME, @trName sysname
    DECLARE Cursor_Disabletriggers CURSOR FOR  
    SELECT  object_name(parent_id) , name
    FROM   sys.triggers  
    OPEN Cursor_Disabletriggers
    FETCH NEXT FROM   Cursor_Disabletriggers   
    INTO @Table_Triggers  ,@trname
    DECLARE @SQL nvarchar(max)
    WHILE @@FETCH_STATUS = 0   
    BEGIN  
    SET @SQL  = 'drop trigger ' + 'dbo.'+@trname + ' on dbo.'+@Table_Triggers
    select @sql
    EXECUTE (@SQL)
    FETCH NEXT FROM   Cursor_Disabletriggers INTO @Table_Triggers  ,@trname
    END  
    CLOSE Cursor_Disabletriggers
    DEALLOCATE Cursor_Disabletriggers
    END
    I would like to recreate them in separate proc, How can I achieve this?

    You need a permanent table to store the trigger code in:
    create table
    dbo.TriggerDefinitions
    (TableName nvarchar(128) not null,
    TriggerName nvarchar(128) not null,
    TriggerDefinition nvarchar(max) not null,
    constraint PK_TriggerDefinitions primary key (TableName, TriggerName))
    go
    In your procedure which drops the triggers you need to add code that stores the latest trigger definitions in the table above:
    create procedure dbo.DropTriggers
    as
    begin
    declare @TableName nvarchar(128),
    @TriggerName nvarchar(128),
    @TriggerDefinition nvarchar(max),
    @DynamicSQL nvarchar(max)
    declare TriggerCursor
    cursor fast_forward for
    select quotename(object_schema_name(po.object_id)) + '.' + quotename(po.name),
    quotename(object_schema_name(co.object_id)) + '.' + quotename(co.name),
    m.definition
    from sys.sql_modules as m
    join sys.objects as co
    join sys.objects as po
    on po.object_id = co.parent_object_id
    on co.object_id = m.object_id
    where co.type = 'tr'
    open TriggerCursor
    fetch next
    from TriggerCursor
    into @TableName,
    @TriggerName,
    @TriggerDefinition
    while @@fetch_status = 0
    begin
    if exists(select top 1 1 from TriggerDefinitions where TableName = @TableName and TriggerDefinition = @TriggerDefinition)
    update TriggerDefinitions
    set TriggerDefinition = @TriggerDefinition
    where TableName = @TableName
    and TriggerName = @TriggerName
    else
    insert TriggerDefinitions
    values (@TableName, @TriggerName, @TriggerDefinition)
    if @@rowcount = 1
    begin
    set @DynamicSQL = 'drop trigger ' + @TriggerName + ' on ' + @TableName
    print @DynamicSQL
    --execute sp_executesql
    -- @DynamicSQL
    end
    fetch next
    from TriggerCursor
    into @TableName,
    @TriggerName,
    @TriggerDefinition
    end
    close TriggerCursor
    deallocate TriggerCursor
    end
    go
    Finally the procedure which will re-create the triggers will simply query the table created and populated above and execute the code contained therein.
    create procedure dbo.CreateTriggers
    as
    begin
    declare @TableName nvarchar(128),
    @TriggerName nvarchar(128),
    @TriggerDefinition nvarchar(max),
    @DynamicSQL nvarchar(max)
    declare TriggerCursor
    cursor fast_forward for
    select *
    from dbo.TriggerDefinitions
    open TriggerCursor
    fetch next
    from TriggerCursor
    into @TableName,
    @TriggerName,
    @TriggerDefinition
    while @@fetch_status = 0
    begin
    set @DynamicSQL = @TriggerDefinition
    print @DynamicSQL
    --execute sp_executesql
    -- @DynamicSQL
    fetch next
    from TriggerCursor
    into @TableName,
    @TriggerName,
    @TriggerDefinition
    end
    close TriggerCursor
    deallocate TriggerCursor
    end
    go
    I've commented out the code which actually runs the dynamically created SQL.  You'll have to uncomment those lines for the code I've posted will work.

  • I just pruchased a audio book and now I am trying to get it to itunes.  It keeps saying  I need a audible account name and password? My computer is authorized but I dont know my audibe account info? could you help me

    I just purchased a adio book and now I am trying to get it to itunes.  It keeps saying i need a audible account username and password? I put in my itunes info but that is not it? the book is in "public": on my computer could you help me

    Hello Timmy790
    Try the suggestions in the article below to resolve the issue of seeing your old Apple ID on your iPhone.
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/ts5223
    Regards,
    -Norm G.

  • I have lost my ipod touch 4g 32gb i have the serial number and i dont know how to find ? plz help

    i have lost my ipod touch 4g 32gb i have the serial number and i dont know how to find ? plz help plz plz plz plz email me if you want the serial key my email is [email protected]

    Unless you had already set up
    Apple - iPod touch - How to set up Find My iPod touch
    there is nospecial way to locate your iPod,  Apple will not help.  Your SN is only good for identifying the iPod as yours if it is found.
    Change the passwoard for all accounts used onthe iPod and report it to the police. Also see:
    Reporting a lost or stolen Apple product

  • How do you get your ipod touch to make a noise when people text you and to pop up on the screen my friend did something to her ipod to do this but i dont know how please help!!!!!!!!!!!!!!!!!!!!!!!!!!! its like she updated it but i already tried it!!!!!!

    how do you get your ipod touch to make a noise when people text you and to pop up on the screen my friend did something to her ipod to do this but i dont know how please help!!!!!!!!!!!!!!!!!!!!!!!!!!! its like she updated it but i already tried it!!!!!!i am very confused and want my ipod touch 4g like that please help thxns:)

    Go to Settings>Notifications and turn alerts/sounds on for the app(s) in question.  Not all apps have all options.

  • When i try to put apps on my ipod touch it says it not authorized for this computer and to go on the website and do it. but i dont know how?

    When i try to put apps on my ipod touch it says it not authorized for this computer and to go on the website and do it. but i dont know how?

    Hello Bobbie,
    Have you authorized your iTunes library yet to play and sync your iTunes purchases? To do this, head to the Store drop down menu and choose Authorize This Computer.  Then enter in your iTunes store account credentials and then try resyncing your iPod.
    B-rock

  • Somehow i have synced my photos from my area on to my ipod touch, and dont know how to remove the photos. Any help?

    Somehow i have synced my photos from my area on to my ipod touch, and dont know how to remove the photos. Any help?

    You need to unsync them.  If you uses the folder syncing method either remove them from your syncing folder or change which is you syncing folder.  Also see:
    iPhone, iPad and iPod touch: Syncing photos via iTunes

  • So someone took my ipod 4g and who ever took it turned it off and i dont know how to find it and i really want it back, what should i do?

    so someone took my ipod 4g and who ever took it turned it off and i dont know how to find it and i really want it back, what should i do?

    lost/stolen                                      
    No app on the iPod is required.                            
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected, on a computer browser go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Hi i need some help im having problems the ipod can not be turned , in fact it was working fine but suddenly switched off and did not return to light n because it reconnected and if I had drums

    hi i need some help im having problems , the ipod can not be turned , in fact it was working fine but suddenly switched off and did not return to light n because it reconnected and if I had drums  . what can i do to turned on .
    its an ipod touch 64gb

    That symptom is covered here:
    iPod touch: Hardware troubleshooting

  • I went to put music on my itunes from my ipod and it deleted most of my music off of it and i dont know how to get it back. PLEASE HELP ME. :-|

    i went to put music on my itunes from my ipod and it deleted most of my music off of it and i dont know how to get it back. PLEASE HELP ME. :-|     

    - Unsync/delete all music and resync
    To delete all music go to Settings>General>Usage>Storage>Music>Tap edit in upper right and then tap the minus sign by All Music
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes      
      - Restore to factory settings/new iOS device.                       
    If necessary, you can redownload most iTunes purchases by:        
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I have lost all my notes saved on my iphone after syncing it. and my default mailbox is gmail. notes were very important. and now i dont know how to get them back. can anyone help me out please? thanks in advance.

    i have lost all my notes saved on my iphone after syncing it. and my default mailbox is gmail. notes were very important. and now i dont know how to get them back. can anyone help me out please? thanks in advance.

    Try this ..
    On your Mac open System Preferences > iCloud
    Deselect the box next to:  Notes
    Then reselect it.
    Give iCloud a few minutes to re sync the data.
    Other than that, try Time Machine >  http://pondini.org/TM/15m.html

  • What happens if im trying update my ipod but its telling me i have purchases that have not been transferrend to my itunes libary and its says i can still do it but im scared its gonna erase something but i dont know how to transfer things either!!!

    what happens if your trying to update your ipod but its telling me i have purchases that has not been transferred to my itunes libary and its says i can still do it but im scared its gonna erase something but i dont know how to transfer things either!!!

    Transfer the purchass by:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    In iTunes 11 use Control+B to show the Menu bar then go to iTunes>File>Devices>Transfer Purchases
    If not transferred, the purchases will not be on the iPod after the update.

  • I bought an ipod shuffle 2nd gen a few years ago. tried setting it up got bored and never tried again. really wat to use it now but i dont know how. any help would be greatly appreciated!!

    I bought an ipod shuffle 2nd gen a few years back. i did try to set it up at the time but found it hard (i was young and impatient!!) got bored and never tried again. I really would love to start using it now, but i dont know how....please help!!!

    Hello emmalemonjuice,
    Why not take a look and make use of your iPod's User Guide?
    http://manuals.info.apple.com/en_US/iPod_shuffle_Features_Guide.pdf
    B-rock

Maybe you are looking for