How can I make iTunes de-authorize my Mac after erasing it's hard drive?

How can I de-authorize a Mac Mini in iTunes AFTER I have already erased the hard drive? 

You can deauthorize all then reauthorize it.
Authorization and Deauthorization
Macs:  iTunes Store- About authorization and deauthorization.
Windows: How to Authorize or Deauthorize iTunes | PCWorld.
In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.
More On De-authorizing Computers (contributed by user John Galt)
You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
  1. Open iTunes on a computer
  2. From the Store menu, select "View my Account..."
  3. Sign in with your Apple ID and password.
  4. Under "Computer Authorizations" select "De-authorize All".
  5. Authorize each computer you still have, as you may require.
You may only do this once per year.
After you "de-authorize all" your authorized computers, re-authorize each one as required.
If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

Similar Messages

  • How can I transfer pictures from my old Mac mini to an external hard drive?

    HHow can I transfer pictures from my old Mac mini to an external hard drive? Thanks.

    Normally you should be able to drag and drop them onto the drive, provided the drive is Mac formatted. Have you already tried that?
    Matt

  • How can I get Itunes to just create a route to an external hard drive instead of copying all my music onto my internal disc?

    I have been trying to start using Itunes again, I have a large amount of music on external hard drives and not a large amount of disc space, on my windows version Itunes could use it's library in the hard drive so Itunes would use a directory path to the song file. When trying to import onto my Macbook Air it keeps trying to copy the song files, resulting in a message that says I haven't got enough disc space.
    Any Ideas?
    Kind Regards,
    MEJM1

    One approach:
    Open the menu Edit > Preferences...
    Select the Advanced tab.
    Uncheck Copy files to iTunes Media folder when adding to library.
    This will stop iTunes from wanting to copy everything onto the internal drive any time you add content. This is marginally easier than remembering to hold down the ALT key, however in this scheme iTunes Store purchases, podcasts etc. would still end up on the internal drive.
    Alternatively you can store the entire library on the external drive. Close iTunes if it is open, then copy the existing iTunes folder from your profile to the root of the external drive. Click the icon to launch iTunes and immediately hold down the Option key so that you get the following dialog box:
    Click Choose Library... browse to /iTunes on the external drive and select the library file iTunes Library. Now that library is on the external you can move any new content you want to add to the library into the folder /iTunes/iTunes Media/Automatically add to iTunes to have it added to the library and organized by it without creating duplicates, or filling up the internal drive.
    Ideally you should get another drive so that you can make a backup copy of your library on a separate physical disk.
    tt2

  • How can I get iTunes to re-locate my media content on the hard drive, after a failed attempt at copying the library to an external drive?

    Long story short, I attempted to use an external drive to house my iTunes library to relieve some storage space on my MBP hard drive.  The external drive was formatted as FAT32 and it got hung up on an HD movie in excess of 4GB in size.  I had to reformat the external drive as MacOS Extended (Journaled) to solve that problem....but then the bigger issue showed up....
    While reformatting the external drive I switched iTunes back to the original library location on my local hard drive.  Unfortunately, iTunes doesn't recognize all of my content that did manage to get copied to my external drive in the first attempt to transfer content to that external drive.  Nearly 2200 files have exclamation points next to them.  Here is my question:  Can I get iTunes to re-locate all of my content at once in the original iTunes files on my local drive without having to "locate" each of the 2200 files one at a time??
    HELP!

    try if this script works for you:
    iTunes Track CPR v1.3 
    This script attempts to locate the files of so-called "dead tracks"--iTunes tracks designated with (!)--that you assume are not actually missing but are still located in the iTunes Music folder in their "iTunes File Order" (Music -> Artist -> Album -> file.xxx)."

  • 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

  • I have recently moved all of my files to a larger external hard drive, but when I am reminder of an itunes upgrade it's still attempting to go to the old drive.  How can I change the settings so it automatically goes to my new hard drive?

    I have recently moved all of my files to a larger external hard drive, but when I am reminder of an itunes upgrade it's still attempting to go to the old drive.  How can I change the settings so it automatically goes to my new hard drive?

    lisacooney wrote:
    I have recently moved all of my files to a larger external hard drive
    How did you move these files?

  • How can I make my movies pro for mac work?

    How can I make my movies pro for mac work?
    I have downloaded it i click on the icon but I cant make it work

    Delete the app using this free utlity > Download AppCleaner for Mac
    Then re download the app using the same Apple ID it was originally purchased from. You won't be charged again.
    How to re download apps from the Mac App Store:
    Open the App Store. From the menu bar click Store > Sign In
    Click Purchases from the top of the App Store window.
    Select which apps you want to re download. Then right or control click where you see Installed  then click Install.
    If you still have problems, I located the app developer's website. Contact details for help here >   http://www.mymovies.dk/about.aspx

  • I have just installed a 2TB time capsule on my iMac i7, it see my second 1TB hard drive but the 256 SSD doesn't come up in the list of hard drives I can back up. How can I enable the time machine to see my first SSD 256gb hard drive?

    I have just installed a 2TB time capsule on my iMac i7, it see my second 1TB hard drive but the 256 SSD doesn't come up in the list of hard drives I can back up. How can I enable the time machine to see my first SSD 256gb hard drive?

    iLife is preinstalled on all the Macs. If you purchased iLife in the App Store or your computer came without DVDs, open App Store > Purchases and download the applications. If your Mac came with discs, insert the Applications DVD and install iLife applications

  • How can I get my site back (done with Iweb) on my new hard drive? I had to change my hard drive after droping my computer.

    Can someone help me. I had to change my hard drive few weeks ago and lost everything. I made a site via iweb and my site is still on line but I don't know how can I get my site back on my iweb with my new hard drive.

    Patrick ~ Welcome to the Support Commuities. Here's where iWeb's key Domain file (containing your site data) is usually located:
    ...But rather than backing up just that file, consider using Time Machine and/or SuperDuper.

  • How can I move (copy) my Time Capsule date to a new 2T hard drive and then wipe the TC and start as a new (clean) Time MACHINE backup?

    How can I move (copy) my Time Capsule date to a new 2T hard drive and then wipe the TC and start as a new (clean) Time MACHINE backup?

    Just use the archive utility on the disk page of the airport utility manual setup..
    If you have lion and v6 airport utility.. it missed out. On lots of things.
    Download and install the real.. UTILITY
    5.6 http://support.apple.com/kb/DL1482

  • HT1199 I need your help, PLEASE. How can to fix "NO MOUNTABLE FILE SYSTEM" error of my back up hard drive on Mountain Lion OS?

    I need your help, PLEASE. How can to fix "NO MOUNTABLE FILE SYSTEM" error of my back up hard drive on Mountain Lion OS?

    Did you format the drive for Mac use before you tried to use it as a backup drive?
    Are you using Time Machine on the drive? You can't view the contents of its backup database and the only way to access the info is directly from the Time Machine app.

  • Own a second hand ipod classic,how can i tell what generation it is if back is scratched and hard drive busted?

    own a second hand ipod classic,how can i tell what generation it is if back is scratched and hard drive busted?

    See here: Identifying iPod models
    Or type in the iPod's serial # here: https://selfsolve.apple.com/agreementWarrantyDynamic.do
    B-rock

  • Can my OS X (10.4.3) Mac read an external PC Hard Drive?

    Can my OS X (10.4.3) Mac read an external PC Hard Drive?
    How???
    TIA.

    Well, you're so right.
    The external drive in question is a 500GB LaCie (triple interface). But connecting it to a PowerMac G5 through the FireWire 400 port caused a kernel panic -- not a pleasant experience, and one that led me to believe that the Mac would not play nice with a PC-formatted, external drive.
    Following your suggestion, I connected the same drive, through the FW-400 port, to a G4 Mac Cube... and it mounted just fine! I transferred the data, and got the job done.
    Thanks for your reply.

  • How can I make itunes detect new music added to Music folder

    How can I setup itunes to automatically detect new music added to my music folder? Under the advanced setting I currently have Itunes set to view my music folder where all my music is located. Im using Windows 7, Itunes Version 10.4.1.10. Currently I have to add new music manually and that's *****. I have over 2000 cd's that I need to rip. Please help. Thanks

    If you are ripping CDs, you can rip with iTunes and the tracks will be added to your iTunes library without manual intervention.
    But if you already have the files, or are using something other than iTunes to rip, you will note that iTunes does not automatically detect when new files have been placed in a folder.  You can add this capability by using a 3rd party program such as iTunes Folder Watch.

  • How can I make my pages a smaller size after completing my work?

    I have finished making some newspaper styled pages, however they are too big (due to poor calculations). How can I make  my pages  smaller, or to be the size I want?
    Thanks!

    As DOD and Peter have suggested, Layout Adjustment is probably the way to go. You will have to do some manual adjustments, but this tool can help save you some time.
    If you are using CS5 or earlier this explains the process:
    For CS6 you can use the Liquid Layout menu to do this:

Maybe you are looking for

  • VPN (PPTP) problem

    Hi I have a weird VPN problem on my macbook. I'm trying to connect to a Windows 2000 Server though VPN dialup (PPTP), it connects, seems like I'm getting an IP, but I cannot access anything on the network. VPN dialup works fine from my iMac, so I kno

  • My green audio bars went invisible and I can't seem to get them to reappear

    Hello, I use After Effects CS6 with a pretty new i5 desktop computer with Win8. My green audio bars (not sure of the technical name) just starting being invisible for the first time, so I can't edit/move them around anymore, as shown in this screen c

  • How do I get rid of spam pop ups and ads?

    how do I get rid of spam pop ups and ads?

  • 2 ASA for VPN tunnel hub and Dual tunnel to both from cisco1800

    I am struggling with configuring Cisco1841 to have dual or back up tunnel to two seperate ASA's on our corporate network. There is alot of great doco on DMVPN with routers as hub but is DMVPN the best way to configure this router and the others to fa

  • Defining input file encoding type for XML Command Line parser

    The commend line parser seems to default to an input xml file type of UTF8. I would like to use ANSI xml file types. There is an option of xml -e <encoding> that should be able to do this. I have tried xml -ee ANSI file.xml xml -ee 'ANSI' file.xml xm