Stolen Macbook has been removed from Find My iPhone.

My computer was stolen and I locked it through the iCloud feature.  Now, I'm unable to see under the listed devices.
Is there a way to unregister a locked macbook from iCloud? Or has the disk been replaced/formatted. 
I'm concerned about the data that was on there.
Thanks.

What type of account?

Similar Messages

  • Hi. the email application has been removed from my ipad. I don't have back up so how can I get it back?

    Hi. the email application has been removed from my ipad. I don't have back up so how can I get it back?

    It is not possible to remove the Mail app (or any other of the bundled apps) from the iPad. It's probably been moved to another Home screen or inadvertently placed in a folder. If you can't find it, you can reset the Home screens in the General -> Reset preferences.
    Regards.

  • Goods receipt when PO creator has been removed from org structure ?

    Hello in my organisational structure PPOMA_BBP, i have 2 users, X and Y.
    X has created a PO in the SRM portal.However , X has been removed from the org. structure.
    Is it possible for Y to make the goods recept( that is , Y logs in the portal and makes the goods receipt) ?

    Hi
    Did you try to delete the user ? Did you get any error message?
    Note 1148837 - SRM user cannot be deleted
    When trying to delete an SRM user the system will check if there are still
    related SRM documents in the system. If there are active documents in the
    system the deletion is not possible. This is the correct system behaviour.
    But even if all related SRM documents are archived the deletion is
    sometimes not possible, because there are residual entries in table
    CRMD_PARTNER linked to this user.
    More Terms
    User crmd_partner residual entries deletion active document
    Cause and Prerequisites
    Solution
    The attached report PARTNER_SET_DELETE will display in simulation mode all
    residual entries in table crmd_partner with invalid item or header links
    and in non simulation mode it will delete the corresponding crmd_partner
    entries.
    Header Data
    Release Status: Released for Customer
    Released on: 10.03.2008 11:54:37
    Priority: Correction with low priority
    Category: Help for error analysis
    Main Component SRM-EBP-PD Procurement Document Methods
    Additional Components:
    SRM-EBP-ADM-USR SRM User Administration
    Valid Releases
    Software Component Release From
    Release
    To Release and Following
    SRM_SERVER 500 500 500
    SRM_SERVER 550 550 550
    Support Packages
    Support Packages Release Package Name
    SRM_SERVER 500 SAPKIBKS14
    SRM_SERVER 550 SAPKIBKT12
    Correction Instructions
    Ref note 550071 too..
    regards
    Muthu

  • When I back up my  I phone 5s or my ipad2 camera roll, contacts and documents does this save in the cloud all to view even if a photo has been removed from camera roll?

    When I back up my  I phone 5s or my ipad2 camera roll, contacts and documents does this save in the cloud all to view even if a photo has been removed from camera roll?

    iCloud- Photo Stream FAQ
    iCloud- Photo Stream limits
    iCloud- How to delete photos from Photo Stream
    iCloud- Photo Stream troubleshooting
    iCloud- Using and troubleshooting Shared Photo Streams
    iPhoto '11- Add, remove, and edit photos in a shared photo stream
    iPhoto '11- Create a shared photo stream
    There are obviously limits to what can be stored in Photo Stream and for how long.
    If she wants backups then she will need something like this: Seagate Wireless Plus.

  • HT203254 Why Mac Book Pro 17 Inch has been removed from the Apple Stores?

    while surfing the Apple web site, I found that Mac Book Pro 17 Inches has been removed from all the
    stores......is there any fault or some thing wrong has been detected in it?

    I heard a rumor that the 17" machines are all wearing cement shoes and at the bottom of the East River. Some guy named Soprano tipped me off.
    We aren't supposed to talk about it.

  • HT201210 Hi, the App Store icon has been removed from my iPad even after synching and updating. Any suggestions on how to get it back to be able to update / purchase apps?

    Hi, the App Store icon has been removed from my iPad even after synching and updating. Any suggestions on how to get it back to be able to update / purchase apps?

    If you do not have, or remember, the passcode for Restrictions, the only option available to you is to reset the device to factory settings via itunes.

  • SL500, Product recovery function has been removed from this sytem

    I upgraded my SL500 from Vista to windows 7 OS several years ago and lately the OS has been acting weird (freezing, very slow at times) so I am thinking something is corrupted somewhere and want to restore it back to the manufacturers state.  However, when I try to do this through rescue and recovery, it tells me that the recovery function has been removed from the system.  I'm assuming that when I upgraded from Vista that R&R was no longer compatible so I installed version 4.5.  My laptop did not come with backup OS disks and was told that this was the way to restore the system back to the factory state.  How do I do this if I'm getting this message?

    http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-62978
    try this. If this don't work then you would to reinstall the OS using the T43 recovery media disk set. 
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • How do I re-add a device I removed from Find My Iphone?

    How do I re-add a device I removed from Find My Iphone? I decided I did not want to lock it remotely in case it is located.

    same way you added it the first time
    https://www.google.dk/search?source=ig&rlz=1G1TSEH_ENDK367&q=add+a+iphone+to+fin d+my+iphone&oq=add+a+iphone+to+find+my&gs_l=igoogle.3.0.0i19j0i5i19j0i8i30i19.91 64420.9174320.0.9175191.37.30.7.0.0.0.235.3180.17j9j2.28.0...0.0...1ac.1.4IPvfNe pj_s

  • How to show a row has been "removed" from a table

    We maintain rows in a table with a version number which will determine the current set of accounts for a version. I need to be able to show the changes between the versions - when a row was ADDED, REMOVED or there was NO CHANGE. I can work out ADDED and NO_CHANGE without any problem, but I'm not sure how I can determine that a row has been REMOVED when it no longer exists in the next version.
    I have provided an example piece of SQL below:
    with w_acct1 as
    (select 'A1' acct, 0 vers from dual
    union all
    select 'A2' acct, 0 vers from dual
    union all
    select 'A3' acct, 0 vers from dual
    union all
    select 'A1' acct, 1 vers from dual
    union all
    select 'A2' acct, 1 vers from dual
    union all
    select 'A1' acct, 2 vers from dual
    union all
    select 'A4' acct, 2 vers from dual)
    select a.*,
           nvl(lead(acct) over (partition by acct order by vers desc),'NULL') ld,
           case when lead(acct) over (partition by acct order by vers desc) is null then
                   'ADDED'
               when lead(acct) over (partition by acct order by vers desc) = acct then
                   'NO_CHANGE'
               else
                   'REMOVED'
               end add_remove
    from w_acct1 a
    order by vers,acctWhich gives me the following result:
    ACCT VERS LD ADD_REMOVE
    A1     0     NULL     NEW
    A2     0     NULL     NEW
    A3     0     NULL     NEW
    A1     1     A1     NO_CHANGE
    A2     1     A2     NO_CHANGE
    A1     2     A1     NO_CHANGE
    A4     2     NULL     NEW
    The result I want is:
    ACCT VERS LD ADD_REMOVE
    A1     0     NULL     NEW
    A2     0     NULL     NEW
    A3     0     NULL     NEW
    A1     1     A1     NO_CHANGE
    A2     1     A2     NO_CHANGE
    A3     1     NULL     REMOVED
    A1     2     A1     NO_CHANGE
    A2     2     NULL     REMOVED
    A4     2     NULL     NEW
    Note the REMOVED rows associated with the version even though they don't exist in the dataset for that version number.
    Can this be done with analytic functions or some other cool Oracle feature I'm missing?
    Regards
    Richard

    You can't know about a row being removed unless you have a record of that row somewhere, either as a copy of your old data (see example below) or you've recorded the information using delete triggers etc.
    SQL> ed
    Wrote file afiedt.buf
      1  with old_data as (select 1 as id, 'A' as dta from dual union all
      2                     select 2, 'B' from dual union all
      3                     select 3, 'C' from dual)
      4      ,new_data as (select 1 as id, 'A' as dta from dual union all
      5                    select 3, 'X' from dual union all
      6                    select 4, 'Y' from dual)
      7  --
      8      ,ins_upd as (select * from new_data minus select * from old_data)
      9      ,del_upd as (select * from old_data minus select * from new_data)
    10      ,upd as (select id from ins_upd intersect select id from del_upd)
    11      ,ins as (select id from ins_upd minus select id from upd)
    12      ,del as (select id from del_upd minus select id from upd)
    13  --
    14  select 'Inserted' as action, null as old_id, null as old_dta, new_data.id as new_id, new_data.dta as new_dta
    15  from new_data join ins on (ins.id = new_data.id)
    16  union all
    17  select 'Updated', old_data.id, old_data.dta, new_data.id, new_data.dta
    18  from old_data join new_data on (old_data.id = new_data.id)
    19                join upd on (upd.id = new_data.id)
    20  union all
    21  select 'Deleted', old_data.id as old_id, old_data.dta as old_dta, null as new_id, null as new_dta
    22  from old_data join del on (del.id = old_data.id)
    23  union all
    24  select 'No Change' as action, new_data.id as old_id, new_data.dta as old_dta, new_data.id as new_id, new_data.dta as new_dta
    25  from new_data where id not in (select id from ins_upd union all
    26*                                select id from del_upd)
    SQL> /
    ACTION        OLD_ID O     NEW_ID N
    Inserted                        4 Y
    Updated            3 C          3 X
    Deleted            2 B
    No Change          1 A          1 A
    SQL>

  • How do I remove a song from my ipod that has been removed from itunes but still appears on my ipod

    I have an ipod touch and my problem is how to remove songs from it when they have been removed from itunes. After synching the songs still appear on the ipod. How can I fix this?

    Hi empty,
    Have you deleted the song from the iPod itself? Go to the songs list and swipe left on the song title. A "Delete" option should come up allowing you to directly delete the item from your iPod....
    Cheers,
    GB

  • The Product Recovery function has been removed from this system

    I get the following error when I try full system restore - "The Product Recovery function has been reomed from this system"?
    How can I fix this?

    welcome to the forum:
    Have you made a recovery media before this problem occured??? if you haven't you may need to call Lenovo and ask for a set of recovery disks, or just use your own XP/Vista OS you got from somewhere, and load it on your machine then enter you own serial number that come with your machine.
    Then proceed to download the various softwares and drivers applicable to your machine, the most important that you won't have is the predesktop area, if you think this is unacceptable then call Lenovo and obtain recovery media from them (a nominal handling and service charge of around 50 USD will be charged).
    http://www-307.ibm.com/pc/support/site.wss/product.do?doctypeind=9&template=%2Fproductselection%2Fla...
    fill in the detail and download away.

  • HT2905 The duplicate option has been removed from the latest version of Itunes. I have over 1000 duplicates and need to have a multiple duplicate removal option. How do i do that?

    I have over 1000 duplicates in both my files and in the Itunes library. The duplicate function appears to have been removed from teh latest version of Itunes. How do I identify and remove multiple duplicates from my library and my music file

    The show duplicates/show exact duplicates features have been left out of iTunes 11.0. Rumor suggests they will be restored in the next build. In the meantime I have written two Windows scripts to make playlists of Duplicates and Exact Duplicates, either from a selection of tracks or the entire library. Note that, as with the iTunes feature, this list makes no distinction between "originals" and "dupes", you have to decide which is which.
    There is also my DeDuper script for automatically removing duplicate copies but keeping one remaining copy of each set. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    If you want to manually remove duplicate tracks use shift-delete to remove selected tracks from the library as well as the playlist. Keep one of each repeated group of files and don't send the others to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file. Same advice to backup applies.
    tt2

  • How do I remove previous device from iCloud account? (It is removed from Find My iPhone and iCloud Backup)

    I recently got a new iPhone and traded in my old one. At the store, the representatives erased the contents and settings of the old phone (though they did run into some difficulties because of a pre-installed profile and I think were successful after a few attempts) and removed the SIM card. However, the old device keeps showing up on my iCloud account. I removed it from Find My iPhone and deleted the stored backup for the phone, but it's still there. I've talked with Apple Support about it as well as called the store on what I should do. Apple cannot remove the device on my account for me (which is fair), but I think it's strange that I can't remove my own device either. It won't give me any option to.
    The Apple people reassure me not to worry and that everything is probably "fine", but I don't like this uneasy feeling that my iCloud account (and who knows what other data) might have an open connection or hole somewhere that I'm not aware about.
    Please help!

    Some people I've talked to speculated (but could not confirm) that this "glitch" would be fixed once someone registered their own iCloud account to the old device; this would force the old device to be removed from my iCloud account and transferred to the new user. How long have you been experiencing this "glitch"? I'm guessing if Apple calls it a glitch on iCloud, it won't be fixed any time soon...

  • Sold phone removed from find.my.iphone but not erased

    Hi I sold my iPhone 4S she has emailed me saying she can't set the phone up as I didn't deleted from find my iPhone so I went on find my iPhone and removed it but didn't erase the phone first is there anyway that I can do it with out her sending your phone back ? The phone is not on find my iPhone anywhere so will she be able to set the phone up now ?

    You have to remove it from Find My iPhone.
    Find My iPhone Activation Lock: Removing a device from a previous ...
    iCloud: Remove your device from Find My iPhone - Support - Apple

  • Stolen Mac has been locked via Find my Mac, anyway to get IP address of where it was connected so i can trace that way

    So my Macbook Air was stolen last year (May 2012), recieved an email this morning from Apple saying it had been "Locked".... Besides the locked indication i want to be able to find out where it is... Surely Apple will keep a log of the IP address that it was connected to when the "Lock" signal was sent...
    Who is best to contact to get that info?

    I have the same issue - I had my Macbook Air stolen last week and just received notification that a sound has been played on it and that it has been locked. However, it hasn't told me where it is, so I'm none the wiser...

Maybe you are looking for