How do i find out what devices are authorised on my apple ID?

I have just bought a new iMac and want to get all my itunes library etc on it.  However, apparently i have reached my limit of 5 authorisations, which is entirely possible as I have had a number of iphones, Macair and ipads, some of which I either no longer own or are no longer functioning.  How do I find out what devices are authorised and then deauthorise any that I don't use any more - given that they may not even work!

Welcome to the Apple Community.
You can't de-authorise just the computers you no longer have access to.
Your only option is to de-authorise all your computers and then re-authorise those you wish to be authorised. You can do this by logging into your account settings in iTunes on your computer (Store > View My ID) and selecting the option to de-authorise all.
Please note however, you are only permitted to do this once in each 12 month period, therefore you would be better de-authorising your computers before you lose access to them. you can do this from the 'Store' menu in iTunes.

Similar Messages

  • How do I find out what devices are linked to my account

    How do I find out what devices are linked or registered to my account or apple Id?

    http://support.apple.com/kb/ht4627

  • How do you find out what devices are conneted to itunes

    I am trying to figure out what devices I have connected to my iTunes. I was also wondering if there was anyway to figure out if an iPod that was sold to someone else is actually mine since i do not have the box or anything anymore. The iPod in question has be reset, SO if it was mine then I cant tell unless I have the Serial number.

    Chris CA, the OP didn't say the OP had sold it, just that it was sold (presumably by a third party).
    http://support.apple.com/kb/HT2526 - You can use My Support Profile to find a list of serial numbers that have been purchased or registered with your Apple ID.
    My Support Profile - https://supportprofile.apple.com/MySupportProfile.do
    You won't be able to find the serial number on the item that was sold unless you look at the actual iPod, so you'll need for the new owner to be willing.

  • How can I find out what devices are hooked up to my icloud?

    I need to know what all devices are linked to my apple id.  Is there any way to do this??

    If you are running OSX 10.9, open iTunes and go to the iTunes Store (top right of the window). Click on your account name (on the top left of the window) and click Account. Under iTunes in the Cloud, go to Manage Devices. Then remove anything you dont want in there.

  • HT204053 How can I find out what devices are using my AppleID and the history of purchased items with my AppleID?

    I have used my appeID to load some games to my son's friends iPod's and have found that the iTunes gift cards that were loaded under my ID have been used very quickly ($100 in 2 months) when I have not been downloading things.  I have been told that the friend has been downloading games/music after I had put in my password to load something else.

    We are fellow users on here and not Apple employees so have no account access.
    You can see iTunes and app store purchases by going to the store for each and clicking Purchases on the right side.
    You might want to consider contacting the store support staff at http://www.apple.com/emea/support/itunes/contact.html and request your account be locked for a period of time.  You need to stop allowing uncontrolled access and that may be he bet way.

  • How can I find out what apps are on my step daughters phone without the phone?

    How can I find out what apps are on my step daughters phone without the phone? She is on my phone plan but does not live with me and I am concerned about the apps she may be using.

        baniville108,
    Thank you for reaching out to us. We certainly know the importance of being able to know what options are available with your device. With apps on devices, thoses are specific to the phone itself, so there is no open forum to view what apps are downloaded. The only option would be to physically review from the phone, or if you have the same Apple ID you can log into it and view from there. Please let us know if you need anymore assistance.
    Thank you,
    TonyG_VZW
    Follow us on Twitter @VZWSupport

  • HT1420 How do i find out what computers are authorized on my account

    How do i find out what computers are authorized on my account

    And why isn't there a list of authprized devices available? Apple knows I have x number of authorized devices, and they know what they are. Why can't I have access to this information about my own account?

  • How do I find out what applications are running in the background

    I have a 2008 iMac with 2GB memory.  How do I find out what programs are running in the background?  I am going to buy a new iMac before the end of the year to replace this one.  When I looked at Activity Monitor it shows 1.8Gb used but doesn't tell all the programs running.

    open activity monitor [if it doesnt launch click winders>Activity Monitor]. then it'll show all proceses

  • How do i find out what drives are present in a particular system

    Hi,
    How do i find out what drives are available in a particular system either by giving the systems ipaddress or the systems name...

    You can't do that. That would be a real security risc.
    /KAj

  • How do I find out what features are not useful in my Classifier?

    How do I find out what features are not useful in my Classifier? I am trying to trim down the number of features to speed up the training of my data, I have about 3700 features. I have found the Filter Based Feature Selection Module and have not been successful
    in using it. I have looked through all the examples and have not been able to find any examples using the module. Will the Filter Based Feature Selection Module help me to trim features. If so how do I use it?

    One way to do this would be is to use a random forest classifier. Feature/variable importance can be obtained relatively easily with random forests. 
    Here is how you may do it in R.
    > install.packages('randomForest') #install randomForest package in R if it is not already there
    > library(randomForest) # reference the library
    > data(mtcars) # load motor cars data that ships with 
    #train a random forest 
    > mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000,keep.forest=FALSE, importance=TRUE)
    > importance(mtcars.rf)
    > importance(mtcars.rf)
    #You will see an output like below
           %IncMSE IncNodePurity
    cyl  16.168645     169.96741
    disp 18.672188     260.08722
    hp   17.584375     184.95007
    drat  6.948743      63.54528
    wt   17.818509     254.30347
    qsec  4.772889      33.25546
    vs    5.303058      24.39064
    am    5.210181      17.36626
    gear  4.619161      21.55450
    carb  8.577037      28.46715
    # or plot the importance as follows
    > varImpPlot(mtcars.rf)
    What this tells you is how important predictors/features/variables like horsepower(hp), weight(wt), no. of cylinders (cyl) is in predicting miles per gallon (mpg).
    If you are wondering how the data looks like. Try this
    head(mtcars) # gives first few lines of the data set.
     mpg cyl disp  hp drat   wt ... 
    Mazda RX4     21.0   6  160 110 3.90 2.62 ... 
    Mazda RX4 Wag 21.0   6  160 110 3.90 2.88 ... 
    Datsun 710    22.8   4  108  93 3.85 2.32 ... 
    . Try this
    Here is a few useful resources:
    Random Forest documentation (Check out the pages on variable importance and variable importance plot)
    http://cran.r-project.org/web/packages/randomForest/randomForest.pdf 
    Motor cars data: http://stat.ethz.ch/R-manual/R-devel/library/datasets/html/mtcars.html

  • Are not the right ones for the icloud account. How can I find out what these are?

    I have downloaded icloud onto my PC. When I try to access my account I am told that although my Apple ID and password are correct they are not the right ones for the icloud account.How can I find out what these are?

    Christine Helen wrote:
    I can't find any way of creating an icloud ID. I only have a PC. no Mac product except an iPod classic.
    Oh, then you can't unless you know someone with a Mac you could use for a moment or 2. (Like at the Apple Store)

  • HT4211 how can you find out what kb are being used by what apps

    how can you find out what kb are being used by what apps there is always alot of kb being used even when I don't use my phone

    Go into settings , general, usage and it tells you what the apps use. If your refering to the memory storage of the apps.

  • Hard drive shows 159gb of other (yellow) how do I find out what these are to free up space?

    hard drive shows 159gb of other (yellow) how do I find out what these are to free up space?

    Hope this helps.
    1. Empty Trash.
        http://support.apple.com/kb/PH10677
    2. Delete "Recovered Messages", if any.
        Hold the option key down and click "Go" menu in the Finder menu bar.
        Select "Library" from the dropdown.
        Library > Mail > V2 > Mailboxes
        Delete "Recovered Messages", if any.
        Empty Trash. Restart.
    3. Repair Disk
        Steps 1 through 7
        http://support.apple.com/kb/PH5836
    4. Disk space / Time Machine ?/ Local Snapshots
       http://support.apple.com/kb/ht4878
    5. Re-index Macintosh HD
       System Preferences > Spotlight > Privacy
       http://support.apple.com/kb/ht2409

  • How can I find out what objects are in a datafile???

    My database is 8.1.7...
    I have a tablespace with multiple datafiles. How can I find out what objects are in a specific datafile???
    Thanks in advance...

    DBA_SEGMENTS
    DBA_SEGMENTS describes the storage allocated for all segments in the database.
    Related View
    USER_SEGMENTS describes the storage allocated for the segments owned by the current user's objects. This view does not display the OWNER, HEADER_FILE, HEADER_BLOCK, or RELATIVE_FNO columns.
    Column Datatype NULL Description
    OWNER
    VARCHAR2(30)
    Username of the segment owner
    SEGMENT_NAME
    VARCHAR2(81)
    Name, if any, of the segment
    PARTITION_NAME
    VARCHAR2(30)
    Object Partition Name (Set to NULL for non-partitioned objects)
    SEGMENT_TYPE
    VARCHAR2(17)
    Type of segment: INDEX PARTITION, TABLE PARTITION, TABLE, CLUSTER, INDEX, ROLLBACK, DEFERRED ROLLBACK, TEMPORARY, CACHE, LOBSEGMENT and LOBINDEX
    TABLESPACE_NAME
    VARCHAR2(30)
    Name of the tablespace containing the segment
    HEADER_FILE
    NUMBER
    ID of the file containing the segment header
    HEADER_BLOCK
    NUMBER
    ID of the block containing the segment header
    BYTES
    NUMBER
    Size in bytes, of the segment
    BLOCKS
    NUMBER
    Size, in Oracle blocks, of the segment
    EXTENTS
    NUMBER
    Number of extents allocated to the segment
    INITIAL_EXTENT
    NUMBER
    Size in bytes requested for the initial extent of the segment at create time. (Oracle rounds the extent size to multiples of 5 blocks if the requested size is greater than 5 blocks.)
    NEXT_EXTENT
    NUMBER
    Size in bytes of the next extent to be allocated to the segment
    MIN_EXTENTS
    NUMBER
    Minimum number of extents allowed in the segment
    MAX_EXTENTS
    NUMBER
    Maximum number of extents allowed in the segment
    PCT_INCREASE
    NUMBER
    Percent by which to increase the size of the next extent to be allocated
    FREELISTS
    NUMBER
    Number of process freelists allocated to this segment
    FREELIST_GROUPS
    NUMBER
    Number of freelist groups allocated to this segment
    RELATIVE_FNO
    NUMBER
    Relative file number of the segment header
    BUFFER_POOL
    VARCHAR2(7)
    Default buffer pool for the object
    This view with this another viwe can help you to identify where the object is:
    DBA_DATA_FILES
    DBA_DATA_FILES describes database files.
    Column Datatype NULL Description
    FILE_NAME
    VARCHAR2(513)
    Name of the database file
    FILE_ID
    NUMBER
    NOT NULL
    File identifier number of the database file
    TABLESPACE_NAME
    VARCHAR2(30)
    NOT NULL
    Name of the tablespace to which the file belongs
    BYTES
    NUMBER
    Size of the file in bytes
    BLOCKS
    NUMBER
    NOT NULL
    Size of the file in Oracle blocks
    STATUS
    VARCHAR2(9)
    File status: AVAILABLE or INVALID (INVALID means that the file number is not in use, for example, a file in a tablespace that was dropped)
    RELATIVE_FNO
    NUMBER
    Relative file number
    AUTOEXTENSIBLE
    VARCHAR2(3)
    Autoextensible indicator
    MAXBYTES
    NUMBER
    Maximum file size in bytes
    MAXBLOCKS
    NUMBER
    Maximum file size in blocks
    INCREMENT_BY
    NUMBER
    Autoextension increment
    USER_BYTES
    NUMBER
    Corresponding number of bytes
    USER_BLOCKS
    NUMBER
    Number of blocks which can be used by the data
    Joel Pérez
    http://otn.oracle.com/experts

  • How do I find out what computers are authorized to use my Store Account.

    How do I find out what computers are authorized to use my Store Account? Do my iPhones count towards the 5?

    "How do I find out what computers are authorized to use my Store Account? "
    The ones that you authorized.  There is no list.
    "Do my iPhones count towards the 5?"
    No.
    ONLY computers count.

Maybe you are looking for

  • How to get the ItemKey for a Workflow triggered by an event in Oracle Apps

    Hello, I have added a custom sub process to the seeded "OM Order Header" workflow. The process sends a notification. There are a few attributes in the body of the message tied to this notification, to which I am trying to assign values to using the s

  • Audio Playback is terrible, what can I do? (WindowServer 99.8% CPU!)

    Hey all, I've got a strange problem. I can't do smooth playback on videos. When I say "smooth" I mean I can't get more than a second of playback. The video normally remains stable, but the audio is awful. Choppy, I can hear clicks and pops, sometimes

  • Itunes doesn't start automatically

    Any reason why my iTunes does not open automatically once the iPod is plugged in? I do have the settings Open Itunes when Ipod connected checked. Thanks.

  • InCopy CC crashes when using track changes

    Hi We have had a lot of problems with InCopy chrasing. We are using the package system. It seems to happen when clients are using Track changes, they open the file and if i opens in Story mode it just spins and won't works. If ou open it in Layout mo

  • Looping Through Object Properties?

    hello, i have a movie clip with the class name "block" , am gonna use this object many times in the stage so i need to loop through it, i was able to do that but i can't access to their properties (x,y,height,width,etc...) here is the code : var bloc