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.

Similar Messages

  • How can I make iTunes accept an alias as a movies folder?

    I love how iTunes organises my media files. But I need to keep my movie purchases on a different, external HD with USB 3.0.
    Creating an alias of the folder "Movies" I've copied to the HD and moving the alias back on place into the user's local Library ends in disaster. All movies that have been in the folder before moving it to the new HD are still playable.
    All newly purchased movies are downloaded out of the "Movies" folder at top level directory instead on the external HD. I can copy them to the external HD aliased "Movies" folder, but they won't appear in iTunes after dragging the files onto the iTunes window. I get an error message that says, the appopriate folder is missing. What can I do to make iTunes accept the aliased "Movies"-Folder as default for purchased movies?

    iTunes is very good, and has been for years, at totally ignoring alises and symbolic links, particularly when another drive is involved.  If you want to keep movies on a separate drive you will have to take a humbler approach and drag them to the external drive, then add them from there (hold down the option/alt key while adding to iTunes so iTunes doesn't copy them back to your main drive).  Maybe some day in the distant future the programmers of iTunes will realize many users have to use external drives since the ones supplied with the computers these days are pretty small (my 12 year old computer has a bigger drive), and if Apple wants people to buy huge media files from the iTunes Store they need to factor this into design.  Send feedback to:
    http://www.apple.com/feedback/itunesapp.html

  • 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

  • How can I force Itunes to show me the missing music in my library?

    How can I force Itunes to show me the missing music in my library? Somwhere I found that if you Select all, Ctrl-I it would do it. But it did not help. I need to find the broken ones! Help!

    Create a new, regular playlist named All music.
    Drag everything under Library > Music to this playlist.
    Create a new Smart playlist.
    Match all rules;
    Playlist is Music
    Playlist is not All music. This contains all songs that cannot be found

  • If I have an email as an alternate email on my account how can i make is my new appleID without it saying that it has been used already?

    If I have an email as an alternate email on my account how can i make is my new appleID without it saying that it has been used already?

    Carole,
    If it talks about your password it is probably a scam.
    Take a look in your purchase history and see if there has really been a purchase.
    Also you can refer to this document:  Identifying fraudulent "phishing" email

  • How can i make itunes look like the new version?

    I downloaded the new Itunes 11.4 and it's opening as the old version of Itunes, how do i open itunes to the updated version on my mac?

    Turnb off the left sidebar.
    iTunes menu Viiew > Hide Sidebar

  • How can I get Itunes to recognize all of my music

    I've gotten a new computer and have put all of my music stored on an external drive. I have downloaded itunes, changed the directory to find music to the external drive with my music but it still only chooses some songs. Help, please.

    Morning, rozlee.
    Getting our music succesfully from one computer to our new computer is always one of those things we just want to have done. I was able to find the following article which reviews what file formats are compatible with iTunes specifically.
    Adding music and other content to iTunes
    http://support.apple.com/kb/HT1473#2
    Compare your file formats to the information under "Adding Content on your computer to iTunes":
    Adding content on your computer to iTunes
    iTunes helps you add digital audio and video files on your computer directly to your iTunes library. You can add audio files that are in AAC, MP3, WAV, AIFF, Apple Lossless, or Audible.com (.aa) format. If you have unprotected WMA content, iTunes for Windows can convert these files to one of these formats. You can also add video content in QuickTime or MPEG-4 format to iTunes. To learn how to add these files to iTunes follow the steps below.
    Open iTunes
    From the File menu, choose one of the following choices:
    MacAdd to Library
    Windows
    Add File to Library
    Add Folder to Library
    Navigate to and select the file or folder that you want to add
    Hope this information serves to be useful. Thanks for using Apple Support Communities to find answers to your questions.
    Cheers,
    Pedro D.

  • How can I make Firefox remember new passwords for old accounts?

    I have recently moved to a new notebook computer. I used the "Password Exporter" add-on to import my passwords from my old machine.
    Now, when I reach a Web page that I'd saved the user id and password for, it no longer appears in the fields and I have to start typing some of it, before Firefox offers it again.
    Also, if a password has changed, when I enter the new one, Firefox won't offer to update that saved account with the new password - so I'm stuck with my old 'list' of accounts and their original passwords.
    How can I fix these problems?

    * Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Automatically start Firefox in a private browsing session"

  • How can I make iTunes authorize Audible files?

    I downloaded an audio book from Audible.com to my desktop computer at home.  Now I am traveling, using my wife's MBP, and have my iTunes library with me on an external drive. iTunes is pointed at that library and open.  I am trying to sync my iPod Touch and in the books seciton, I have specified the audio books to be copied onot my iPod, but I get the message that “some of the Audible files were not authorized to be used on this computer.”  How can I overcome this?

    Hello bobgoldstein,
    Thanks for the question.
    You may need to authorize your audible account for this computer. To do so, click Store > Authorize audible account.
    iTunes Store: About authorization and deauthorization
    http://support.apple.com/kb/HT1420
    Using Audible spoken word files with iPod
    http://support.apple.com/kb/TA26591
    Thanks,
    Matt M.

  • How can I make iTunes exclude some songs when shuffling?

    I have several thousand songs on my Ipod.  I want to add several hundred holiday songs and put them in their own playlist.  How can I prevent them from playing when I turn on Shuffle and play everything else on the player except the holiday music?

    Right-click the track(s), Get Info, go to the Options tab, and check "Skip When Suffling."

  • 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.

  • How can i make itunes open on my Windows computer

    I put a password on my ipod and i forgot it and now my ipod says 'Disabled connect to itunes'
    I have now downloaded itunes on to my Laptop and it wont open up so now my ipod is broke unless i can get on itunes How do i fix it ?

    You can't; iTunes doesn't have the code necessary to play DVDs, not even ones you created.
    (65025)

  • TS1389 How can I make Itunes work properly on Windows 8 ? still receive -42110 error !

    Please anyone...help me.

    Some discussion on means of locating the SC Info folder on Windows 8 systems in the following topic:
    TS1389 Re: How can you do this in windows 8?

  • How can I make iTunes delete songs again?

    When I fist used iTunes and I pressed "delete" it asked me if I wanted to physically delete the file.
    I said no and checked the box for never asking me again because I had a bad day.
    But now I would like that function back and I can't find how!
    I read I must delete the preferences, but either I don't know how or where they are (I tried to search for them in various Itunes folders, but nothing popped ;__;)
    I searched the faq too, but there is no answer to this.
    What I must do? Is there something I'm completly missing that would make this question (and me) silly? __)/

    Resetting the iTunes Preference Files:
    May need to make hidden files visible
    My Documents>Tools>Folder Options>View
    Check Show hidden files and folders
    -- Quit iTunes
    -- Delete C:\Documents and Settings\<your username>\Application Data\Apple Computer\iTunes\iTunes.pref and/or iTunesPrefs.xml
    -- Delete C:\Documents and Settings\<your username>\Local Settings\Application Data\Apple Computer Inc\iTunes.pref and/or iTunesPrefs.xml

  • How can I make itunes find my library?

    I foolishly moved my music library from my PC to an external hard-drive (deleting the old library) and now iTunes can't find the new library.  I know I can just re-import all my songs (I have more than 20000 songs) but I don't wan't to lose the ratings / playlists that I have given these songs.  I can still see these ratings/playlists in iTunes but when I click on them, iTunes 11 can't locate the actual song. I can locate the song for iTunes but I seem to have to do this for each individual song.  This situation may well be beyond rescue but I wanted to ask before I made the matter any worse. Help!

    If you moved the entire iTunes folder structure intact, then you should be able to hold down the shift key while starting iTunes, then select "Choose Library" on the pop-up window, then navigate to where the "iTunes Library.itl" file was moved to and select it.  iTunes should now open from the new location.

Maybe you are looking for

  • Ipad to Apple TV- no visual!!

    I am trying to stream lovefilm from my ipad to Apple TV. The sound is coming through but not the visual, how can I fix this? Please help!

  • CASE WHEN not working

    Hello all, I need to reclassify some data based on the values in two columns, the logic to do this is: WHEN CC=X AND DC IS NULL OR DC IS NOT NULL THEN B WHEN CC IS NULL AND DC IS NOT NULL THEN B WHEN CC IS NULL AND DC IS NULL THEN NB This should be a

  • Problems with applying patches

    After installing the Oracle 8.1.5 software on a Redhat 6.1 server I try to apply the patches I downloaded from technet. After I applied these patches, nothing seems to work. The lsnrctl is missing, Oracle has changed to Oracle0, and when I start the

  • Parameters in Materialized views

    Hi We have a materrialized view. But this refershes all the data in the table. Can we set or pass any parameters which would refersh only for a set of records.( say for example for a specific year if one of the columns in a date column in the Mat.vie

  • Multiple instrument recording.

    I have two mics and multiple usb ports but can only get garageband to recognize one mic at a time. Do I also need multiple audio cards? My Shure SM58 requires adaptation from xlr to usb. I've noticed that I can't play anything back while it is plugge