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

Similar Messages

  • HT1725 I recently purchased and downloaded a song from iTunes.  The download was completed but the song cuts off half way through.   How can I download the entire song again?

    I recently purchased and downloaded a song from iTunes.  The download was completed but the song cuts off half way through.   How can I download the entire song again?

    All you need to do is go to the iTunes store, and then go to purchased in the right side of iTunes store.  It is under the quick links.  Then you will be able to download the past purchases there.

  • 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 an ipad mini. From one moment to another a document that was created and used on pages app ( on the ipad mini) does not want to open ( When pressed it states " document cant be opened). How can I make this document open again?

    I have an ipad mini. From one moment to another a document that was created and used on pages app ( on the ipad mini) does not want to open ( When pressed it states " document cant be opened). How can I make this document open again?
    I have tried back ups and  restoring, resetting, and even updating the pages app. And nothing has worked.

    I have an ipad mini. From one moment to another a document that was created and used on pages app ( on the ipad mini) does not want to open ( When pressed it states " document cant be opened). How can I make this document open again?
    I have tried back ups and  restoring, resetting, and even updating the pages app. And nothing has worked.

  • I cannot get itunes to download.  I have a PC with windows 7.  I had itunes but got a message that told me to uninstall and reinstall intunes.  I uninstalled but now can't reinstall. How can I get itunes to install again?

    I cannot get itunes to download.  I have a PC with windows 7.  I had itunes but got a message that told me to uninstall and reinstall intunes.  I uninstalled but now can't reinstall. How can I get itunes to install again?  I click on the download itunes button and it immediatly takes me to the page that says thank you for installing itunes.  But it doesn't install.  I'm getting so frustrated!!  Can anyone tell me how to install itunes????  Thanks.

    This iPod Classic Community forum is a bad place to post your problem with iTunes,  phone support wouild be good. but if you like to talk to support people, post your iTunes problem to the iTunes community forum.
    Or you can read this Apple Support Article on Re-installing iTunes
    Have a nice day!

  • How can I remove and delete songs that are stored in iCloud? I really dislike this feature.

    I really hate this idea of having all of the songs that aren't on your iPhone being out back in there through I cloud. They aren't on my device for a reason. Thanks a lot iTunes.
    How can I remove and delete these songs from my iTunes account in purchased history.

    Transfer to your PC/Mac
    see here
    iOS: Import personal photos and videos from iOS devices to your computer
    Then copy to Flash drive

  • HT201317 since I have down loaded the iOS7 software my photos are no longer up loaded to my laptop. How can I make this start happeing again?

    Since I have downloaded the iOS7 software my photos no ,longer automatically sync and upload to my lap top. How can I make this happen again?

    Hi missvashenca,
    Thanks for using Apple Support Communities.  If your photos are not appearing on your computer from your iOS device anymore through Photo Stream, I'd first verify that the Photo Stream service is still enabled on your iOS device:
    iCloud: Set up Photo Stream
    http://support.apple.com/kb/PH2605
    If it is, you may also want to try switching it off and back on again.
    Likewise, I would also try this with your computer's Photo Stream settings.
    As always, I recommend backing up your photos before performing troubleshooting:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/ht1766
    Cheers,
    - Ari

  • 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 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 downloading again?

    Dear all
    ITunes stops reacting when I download e.g. apps or podcasts. It starts normally but after a while it just stops. This happens since a couple of days. Never had any problems before.

    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

  • HT4113 how can i make my ipad work again ?

    please my ipad is disable how can i fix it back please

    If this is a passcode issue:
    If You Are Locked Out, Have Forgotten Your Passcode, or Just Need to Restore Your Device
    1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. iOS- Understanding passcodes
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. How to Recover Forgotten iPhone Restrictions Passcode | The iPhone and iPad
         If you have forgotten your Restrictions code, then follow the instructions
         below but DO NOT restore any previous backup. If you do then you will
         simply be restoring the old Restrictions code you have forgotten. This
         same warning applies if you need to restore a clean system.
    A Complete Guide to Restore or Recover Your iDevice (if You Forget Your Passcode)
    If you need to restore your device or ff you cannot remember the passcode, then you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and re-sync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
         1. Verify that you are using the latest version of iTunes before attempting to update.
         2. Connect your device to your computer.
         3. Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
         4. Select the Summary tab.
         5. Select the Restore option.
         6. When prompted to back up your settings before restoring, select the
              Back Up option. If you have just backed up the device, it is not necessary
              to create another.
         7. Select the Restore option when iTunes prompts you (as long as you've backed up,
             you should not have to worry about restoring your iOS device).
         8. When the restore process has completed, the device restarts and displays the Apple
             logo while starting up:
               After a restore, the iOS device displays the "Connect to iTunes" screen. For updating
              to iOS 5 or later, follow the steps in the iOS Setup Assistant. For earlier versions of
              iOS, keep your device connected until the "Connect to iTunes" screen goes away or
              you see "iPhone is activated."
         9. The final step is to restore your device from a previous backup. If you do not have a
              backup to restore or have forgotten your restrictions passcode, then restore as New.
    If you are restoring to fix a forgotten Restrictions Code or as a New device, then skip Step 9 and restore as New.

  • How can I make my ipad work again please help

    Hi I bought my iPad last year and it's been working fine. Today I was just going through the settings and it said there was a software update for IOS7 so I agreed to have it done, but I had no idea it was going to take so long (would be nice if they gave a heads up). I had to use my ipad for timely purposes so after a couple of minutes and what looked like only 2% complete, I tried to stop it and the only way was to turn off the device (no option to pause or stop!).
    Now when I turned it back on it says I have to sync it to iTunes and won't go to any other screen. I synced it to iTunes (first time since I purchased it and my Cloud's memory has been full for months so I have no backup whatsoever of anything on my ipad - pictures, email etc. When I sync it up to iTunes it says that it detects a systems update in progress and I cannot continue until it is completed, would i like to continue. I thought I guess that's my only option so I said ok, but unlike when I did it wirelessly unsynced to iTunes earlier, now it is giving a warning that it will return my iPad to factory settings and erase anything I have on it when it completes installing the software!! No thank you!!!! Wish I had that warning the first time around, I have a year's worth of information stored on there that I do not want deleted.
    Somebody please help, how can I get my iPad back to how it was before and stop this update nonsense ASAP??? What a way to ruin my Sunday Please help anybody who can.... Thank you. (and I don't see an option to back it up it just goes to the page to update the device in order to do anything else). Surely there must be a way!! Anybody??

    From your description it seems that you have to upgrade to iOS 7 now.
    No one can say what state your iPad is in since you interrupted a very critical process!
    It is perfectly normal that your iPad's contents are erased during the upgrade process.
    All your data will be restored afterwards, if, and only if you have a recent backup of your iPad!
    To restore your backup from iCloud follow these instructions:
    http://support.apple.com/kb/PH12521

  • Someone that I don't know hacked into my apple I'd, and downloaded clash of clans, how can I make him delete it?

    Clash of clans is a game that works on apple I'd, each apple I'd can have an account, and the game saves on the apple I'd, so if someone else downloads clash of clans on another iPad using the same apple I'd, he would have access of my account. And hen someone hacked my apple I'd and downloaded he game, so I need a way to make him delete it, I've changed my email, and password.

    You've posted in the forum for Apple's defunct office application 'AppleWorks' which has nothing to do with your question. You should ask in the iTunes Store forum (I tried to ask the Hosts to move this thread there but current technical problem with the forums mean that my request probably didn't get through).

  • How can I make MFE delete the mails from the serve...

    guys,I am using mfe on my E63 with mail2web free account.I configured gmail to retrieve my hotmail mails then I configured gmail to forward my mails to my mail2web account.I did that so I dont have to have more than one mailbox on my phone and to be able to check my all accounts from one account which is mail2web via mfe.but my problim is when I delete an email via mfe from my phone its not been deleted from mail2web servers.I mean when I login on pc I see all the mails that I have been deleted.can I make the phone to also delete the mails from the server? thanx
    my blog on the net(in arabic):http://bazkurd.wordpress.com

    WaMuHIP07 wrote:
    Right-click the videos that you want to always start from the beginning in iTunes. The options tab of the video file properties contains this option control. Uncheck the box that says "Remember Play Postion."
    Or hit the left side of your scroll wheel when launching it on your iPod

  • 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

Maybe you are looking for

  • Hiding table columns dynamiclly

    Hello experts. I'm trying to build a wizard which presents a simple query, one of the steps of the wizard is letting the user choose which columns he wants to see in the table at the end (the table is connected to the query). When I deploy the model,

  • How to encrypt user credentials when he logs on the Enterprise Portal

    Hi all, I want to use a cookie approach on SAP Enterprise Portal i.e. when the user first logs on, i would create a cookie and store the encrypted password in it so that next time he hits the portal, he is directly authenticated with the help of the

  • N97 OTA access point help

    hi all, got a probem here that seems to been doin my head in over the last few days. basically i bought a brand new locked to tmobile N97, im a virgin customer.. now, i'm wanting to do a firmware upgrade.. due to having an old **bleep** laptop that o

  • G3 ibook kernel panics in 10.3.9

    Hi, I'm trying to revive my old G3 ibook dual usb - it had run fine in OS X (10.3.9) for a couple of years (after replacing the hard drive) - but suddenly started getting freezes/kernel panics etc. I changed the ram - did complete erase and installs

  • CDR-21605: Failed while processing Module Component % in function c

    I'm generating a form with designer 6i (status 6.5.69.1.0 configuration 4.012). My form is a tabular form, every tab has the subcomponents that refer to previous tab. When I create the last subcomponent, exactly the 5th, and I generate, designer give