Is it possible to change drive letters for library files

Without having to delete and re-add everything? It would be very nice for all my playlists and my iPod and playcounts and whatnot if this were possible.
If not, what is the easiest way to getting all your music with a new drive letter and managing to keep all playlists and whatnot.
I ask because I'd like to be able to access my music on multiple computers but the drive letter D:\ associated with the library is taken on most systems I go on (and on many cannot be changed for various reasons)

To be portable the iTunes library and it's assoicated files should be kept together in one folder, with all the media being in held a designated subfolder. iTunes for Windows normally creates the main iTunes folder at <profile>\<documents>\<music>\iTunes. Inside iTunes should be the sub-folders *Album Artwork*, *iTunes Music* and typically *iPod Games*. From iTunes 8.0 the iTunes folder will usually contain the following library files:
*iTunes Library.itl*
*iTunes Library.xml*
*iTunes Library Extras.itl*
*iTunes Library Genius.itl*
sentinel
If you rename or move the main iTunes folder as a whole, then hold SHIFT while opening iTunes (which gives an option to create a new library or open an existing one), then browse to the new location of the *iTunes Library.itl* file, iTunes will open the library, work out the new locations of any files stored in or below *iTunes\iTunes Music* and place new rips or downloads in the correct relative location. If such a library is put on a portable drive, the drive can be connected to multiple computers, each running the same version of iTunes, and the library can be accessed with iTunes irrespective of which drive letter is assigned by each machine.
As far as I can tell you were taking an existing library, changing the location for files to a new target, consolidating to that new location and then moving the itl files. While this would appear to be the advice given I'm not sure it is as simple or effective as just moving the whole folder.
tt2

Similar Messages

  • Cl_gui_frontend_services: possible to change the user for writing files?

    Hi,
    I'm using the class cl_gui_frontend_services to allow the user to copy a file to a specified network drive (using the method file_copy). The user can open the file again, if he double clicks on a row in a ALV table. So far so good, this works already.
    But one requirement for this solution is, that the user can not access the directory where the copied files are stored directly.
    Now I'm wondering if it is possible to use a specified system user for copying the files? My idea is to switch to the system user just for the method file_copy. I didn't find a method for doing this yet but maybe somebody knows if this is possible.
    Thanks and regards,
    Martin

    Hi ,
    Regarding to your last question; You can get the file list of a specified directory while using OPEN DATASET related commands. After the list populated you make the user select it with the help of a popup screen.
    Gets the list of a specified directory's content
      CALL FUNCTION 'EPS_GET_DIRECTORY_LISTING'
        EXPORTING
          dir_name               = gv_drctry
        TABLES
          dir_list               = lt_dirlist
        EXCEPTIONS
          invalid_eps_subdir     = 1
          sapgparam_failed       = 2
          build_directory_failed = 3
          no_authorization       = 4
          read_directory_failed  = 5
          too_many_read_errors   = 6
          empty_directory_list   = 7
          OTHERS                 = 8.
    Hope it's useful...

  • Input Controls - is it possible to change the font for a combo box

    I have an input Control combo box that is a mixture of english/chinese characters. In Webi I can view the chinese characters correctly if I change the font to MingLIU. Is it possible to change the font for an input control OR to set a default font?

    I am a first-time user of the photo book application in iPhoto.
    I also was a first-time user, so I started using it. Exploring the possibilities, learning my way around.
    Thanks, in advance, for any suggestions someone might have.
    Click the ? icon
    Oops. Sorry, but you're in the wrong forum : iLife > iPhoto

  • Possible to change color depth for Leopard's VNC server?

    I think it is very nice to include vnc server right into Leopard. But one problem, it seems it will only accept connection from clients when it is set to use full colors. This is painfully slow over WAN, any way to change the requirement from the server end?

    Possible to change color depth for Leopard's VNC server?
    Yes you can modify your screen sharing application so that you can adjust the colour depth. However you need to issue a command in the terminal to get this to work.
    http://www.macworld.com/article/131094/2007/12/screensharepower.html

  • ITunes cannot change video kind for multiple files

    i put many video files to library, and then i want to change each video kind into music video, but unfortunately i can't find an easy to change those files at once.
    i have to change them one by one.
    my question is: is it possible to change "video kind" of many files at itunes library at once? how?
    thx

    No, it's not possible to batch-edit the fields on the Video tab. This seems like an outright oversight and will probably be corrected in a future version soon. What's worse, after you take the time to change the Video settings on your files one at a time, iTunes won't bother saving all the changes in the file itself. The Video Kind setting will change to the default "Movie" when the file is removed and added back to the library. For instance, all the "TV Show" files you back up to disk become "Movie" when added back to the library later. You have to edit the Video tab one by one again! It's maddening.

  • Is it possible to  change the order of the files from the newest to the oldest ?

    is it possible to  change the order of the files from the newest to the oldest ?

    View->Sort, or use the A/Z icon on the Toolbar at the bottom of the grid (press T if it isn't showing)

  • Edit code for change drive letters in paths for links, to also work with Fonts that have been moved.

    I have the following code that looks through my links and changes all of the drive letters to the new locations where they exist.  So if something stays in the same folder structure, but moves to a new drive E: and InDesign can not longer find it, you can run the code and have it fix them all.
    Well I want to do the same but for fonts that have also moved.
    Thank you in advance for any and all help!
    if (app.documents.length == 0) {
        err("No open document. Please open a document and try again.", true);
    if (File.fs != "Windows") {
        err("This script is for Windows only.");
    var myDoc = app.activeDocument;
    var myLinks = myDoc.links;
    var myCounter = 0;
    if (myLinks.length == 0) {
        err("This document doesn't contain any links.", true);
    var mySettings = CreateDialog();
    for (i = myLinks.length-1; i >= 0 ; i--) {
        var myLink = myLinks[i];
        if ( myLink.status == LinkStatus.LINK_MISSING || (myLink.status != LinkStatus.LINK_MISSING && mySettings[2] == false) ) {
            var myOldPath = myLink.filePath;
            var myNewPath = myOldPath.replace(mySettings[0] + ":\\", mySettings[1] + ":\\");
            var myNewFile = new File(myNewPath);
            if (myNewFile.exists) {
                myLink.relink(myNewFile);
                try {
                    myLink.update();
                catch(e) {}
                myCounter++;
    if (myCounter == 1) {
        alert("One file has been relinked.", "Finished");
    else if  (myCounter > 1) {
        alert(myCounter + " files have been relinked.", "Finished");
    else {
        alert("Nothing has been relinked.", "Finished");
    function err(e, icon){
        alert(e, "Change drive letter in path", icon);
        exit();
    function CreateDialog() {
        var myDrives = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "y", "Z"];
        var myDialog = new Window("dialog", "Change drive letter in path");
        var myPanel = myDialog.add("panel", undefined, "");
        myPanel.orientation = "column";
        myPanel.alignChildren = "left";
        var myGroup = myPanel.add("group");
        myGroup.orientation = "row";
        var myStText1 = myGroup.add("statictext", undefined, "Change ");
        var myDropDownList1 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1") != "") {
            myDropDownList1.selection = myDropDownList1.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1")];
        else {
            myDropDownList1.selection = myDropDownList1.items[2];
        var myStText2 = myGroup.add("statictext", undefined, " to ");
        var myDropDownList2 = myGroup.add("dropdownlist", undefined, myDrives);
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2") != "") {
            myDropDownList2.selection = myDropDownList2.items[app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2")];
        else {
            myDropDownList2.selection = myDropDownList2.items[3];
        var myCheckBox = myPanel.add("checkbox", undefined, "relink only missing links");
        if (app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox") != "") {
            myCheckBox.value = eval(app.extractLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox"));
        else {
            myCheckBox.value = true;
        var myButtonsGrp = myDialog.add("group");
        var myOkBtn = myButtonsGrp.add("button", undefined, "Ok", {name:"ok"});
        var myCancelBtn = myButtonsGrp.add("button", undefined, "Cancel", {name:"cancel"});
        myOkBtn.onClick = function() {
            if (myDropDownList1.selection.index == myDropDownList2.selection.index) {
                alert("Both drive letters should not be the same.", "Change drive letter in path");
            else {
                myDialog.close(1);
        var myDialogResult = myDialog.show();
        if (myDialogResult == 1) {
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl1", myDropDownList1.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_Ddl2", myDropDownList2.selection + "");
            app.insertLabel("Kas_UpdatePathNamesAfterDriveLetterChange_3.0_checkbox", myCheckBox.value + "");
            return [ myDropDownList1.selection.text, myDropDownList2.selection.text, myCheckBox.value ];
        else {
            exit();

    ok, so I have discovered where the issue came from...
    The code you helped me with before, were I removed all links and my link character styles that I had (found here: http://forums.adobe.com/message/5881440#5881440)
    Well it set all the items I was finding/replacing to unknown fonts that my machine doesn't have (Like Helvetic Neue Bold, instead of just Helvetica Bold, etc).
    Is there an easy way of fixing this?
    The only way I know to fix it right now is:
    Go to Package >> go to Fonts >> Select the the font that says it's missing >> Select Find First >> CLOSE ALL OF THIS, then use the eye-dropper to select the text around that font which copies the formatting and then apply it to the text who's formatting got messed up.  And then start the process all over again for the next occurence of that word whose formatting got stripped.

  • ISCSI Initiator - Cannot Change Drive Letters

    Good afternoon-
    I added two iSCSI LUNs to one of my servers using the Microsoft iSCSI Initiator on a Windows Server 2008 R2 server. Everything seems to be working fine, except for the fact that the drive letters are reversed - Volume 1 is my F: drive and Volume 2 is E:.
    Because I need to use one script across multiple servers, I need to change these drive letters. When I right click them in Server Manager, the Change drive letter option is greyed out. Is there a different way to do this?
    Thank you!

    Please start by that:
    http://forums.cnet.com/7723-6142_102-139635/change-drive-letter-grayed-out-in-disk-management/
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Thanks Mr. X! I was able to fix this with DISKPART. Here are the instructions taken from your link:
    1. Open Command Prompt.
    2.Type:
    diskpart
    3.At the DISKPART prompt, type:
    list volume
    Make note of the number of the simple volume whose drive letter you want to assign, change, or remove.
    4. At the DISKPART prompt, type:
    select volume n
    Select the volume, where n is the volume's number, whose drive letter you want to assign, change, or remove.
    5.At the DISKPART prompt, type one of the following:
    assign letter=L
    Where L is the drive letter you want to assign or change.
    remove letter=L
    Where L is the drive letter you want to remove.

  • It would be possible to change windows license for mac license. I have CS6.

    Hello, I bought Adobe Creative Suite 6 Design and Web Premium for Windows. However, I would buy a IMac and I would like to inquire whether it would be possible here to change windows license for mac license.Thanks for responding.

    yes, Order product | Platform, language swap

  • It should be possible to set default behavior for all file types

    It should be possible to set a default action for all file types. I'm so tired of having to manually sit and say "save this file" because Firefail always defaults to "open with" and has disabled the "Do this automatically for files like this from now on."
    And spare me the zealotry religious excuses for why its the fault of websites and not Firefail
    ''edited to remove swearing''

    I do want users to have full control to be able to set any folder view they want by using Apply to Folders; I just want to set the initial/default view to Detail because that matches what the majority of my users want.
    That is, what registry setting changes when I go to a picture folder, change the view to Detail, and click Apply to Folders? Having done that, I still retain the ability to change it to some other view and apply that to folders. But what registry setting
    represents the change I just made when applying Detail view to all Picture folders.?
    This settings is simple via GUI, but it is related a lot of registry keys, I made a test in my machine, capture the "Apply to Folders" process using Regshot tool (this is a small tool which can compare the regsitry changes after you change some
    settings), and this is the result:
    this is part of the registry changes, a plenty of registry keys and values need to be changed. hard to list them here. if you have interests, I recommend the tool Regshot, it can help you capture the regsitry changes.
    NOTE: Please Note: The third-party product discussed here is manufactured by a company that is
    independent of Microsoft. We make no warranty, implied or otherwise, regarding this product's
    performance or reliability.
    Yolanda Zhu
    TechNet Community Support

  • Possible to change date format when importing files into Aperture 3

    Just wondering if it is possible to change the format of the date from YYYY-MM-DD to YYYYMMDD when you rename files as they are imported into Aperture 3? I typically rename my files and insert my initials, date the photo was taken, sequence number, camera used and original file name. When I do this in Aperture 3, the date format used includes dashes. I would like to have the file renamed without the dashes in the date. Is this possible?

    You should be able to edit the format in the import presets. I have done this for folder stucture of imports, I believe you can do the same for the file renaming. At the bottom of the drop down box for file naming at improt should be an edit option which brings up the import naming presets, select the "YYYY-MM-DD" and remove the dashes.
    Matt

  • Can't change "Open with" for multiple files

    For some reason, all swfs on my computer won't open in the Flash player that came with Flash 9. If I select 1 swf and set it to open with the player, it will work, however, if I select multiple ones, get info and try to set them all to open in the player (or "Change All") I get a dialogue saying I don't "have privileges to change the application for these documents only. Do you want to change all similar documents to open with the application Flash Player.app?" This is rediculous because I could so this in Tiger just fine. Also, I'm the admin and i'm in MY account, so I should be able to do anything I want, right?
    Any insights? I've repaired disk permissions by the way.
    Dan P.

    This is sometimes a problem with the launchservices database. You can try the following to fix it:
    Rebuild LaunchServices Database
    For Tiger users
    Open the Terminal application in your Utilities folder. At the prompt paste in the following command in its entirety:
    /System/Library/Frameworks/ApplicationServices.framework/Frameworks/LaunchServic es.framework/Support/lsregister -kill -r -domain local -domain system -domain user
    Press RETURN.
    For Leopard users
    Open the Terminal application in your Utilities folder. At the prompt paste in the following command in its entirety:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user
    Press RETURN.
    If this isn't successful then there may be other problems involved. You can try this:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    You can install the freeware preference pane, RCDefaultApp - VersionTracker or MacUpdate - which is useful for extensive control over various file associations.

  • Change default directory for Creative files (such as Media Databa

    I'm using a Zen xtra with WinXP Pro on my company laptop. The Creative software puts a lot of files (7 MB!) in my user profile under Document and Settings. Unfortunately, this is making my profile larger than my company allows, since they back up the profile over the network.
    How can I change the default directory for these file? I can't find any .ini files that might declare the path, and I can't find anything in the Windows Registry that points to my profile.
    Help please?
    Thanks,
    Luke

    Thanks for the suggestion of deleting the JetFileBackup folder, Micromouse. I'll try it.
    Any other files look deletable? Without any way to move them, I may have to try deleting some and see what happens.
    I'm not even sure which Creative programs can be uninstalled (other than Nomad Explorer) and still be able to use MediaSource to play songs from my Zen Xtra (through a USB connection). Windows Add/Remove Programs says that I've used all of these programs today:
    Creative Jukebox Driver
    Creative MediaSource
    Creative MediaSource AudioSync Plugin
    Creative MediaSource NOMAD Jukebox 2/3/Zen Plugin
    Creative NOMAD Jukebox Zen Xtra
    But all I've done is open MediaSource and start a playlist from my Zen Xtra. Anybody know which of those can be uninstalled without affecting my use? (Maybe this deserves a separate topic.)
    Thanks,
    Luke

  • Changing "normal size" for QT file?

    I am not sure what this is but I guess it is the default size of the movie when it opens. Is there a way to change this value for a movie? I have looked at the AppleScript dictionary, but cannot see it listed.

    I come from the "old" Internet where file size is important. Big files don't work well with my dial-up so I've learned some tricks to keep my file sizes small.
    http://developer.apple.com/samplecode/samplemakeeffectmovie/samplemakeeffectmovi e.dmg
    I don't know how this app may work on an Intel machine. Rosseta is required.
    Its purpose was to combine two movie files and allow a transition (millions of combinations). Since I was using still image files I first had to give them "time". I added them "scaled" to a ten second sound file then extracted this new 10 second video. Still file sized as if a single image.
    Once I had merged two of these new files it became a new .mov file. Then it was copy/add scaled to add them all into a new file (the sound track). Last was the Texas map over the entire file.
    Try doing that with iMovie!
    And an iMovie file would have measured fifty times larger in file size.
    Tips and tricks can be found in my book.
    Terms of these Discussions require I state I may receive compensation from the link above.

  • Change Open With for all files with a specific extension

    Hi, I've been using OS X for quite some time, but more recently cannot see how you do the following which is proving frustrating:
    * Open Get Info for a file,
    * Use the drop down under Open With to choose Other,
    * Select an appropriate application that wasn't on the drop down list (in this case Smultron text editor for CSV files),
    * Press the Change All button and the drop down turns back to Excel which was the previous default.
    So basically, how do I change all files with CSV extension to Smultron when Smultron wasn't in the list of Open With items and I have to use Other from the list. This is repeatable for any file type with any application that isn't listed and is on both my iMac and my work's MacBook. Try it yourself and you'll see what I mean!!
    Thanks

    Stuart Mchattie wrote:
    Thanks NeroWolf,
    Your solution does work for that single file, but doesn't change the system wide association of that file extension with a particular application. It is because this works that I believe the problem I am having is uncircumventable and is in fact a bug in the OS. Could anyone else confirm this?
    Cheers,
    Stuart
    It might be a bug. What I found is that the icon does not change unless I log out/in or reboot, even when the app normally puts an icon on the file.
    For example if I change an audio file to always open with VLC, it does even though the icon remains as before. However, even though clicking plays the audio with VLC, if I right click the file and select "Open With" it still says iTunes (app) default which is incorrect.
    Message was edited by: nerowolfe

Maybe you are looking for

  • Way to extend Satellite Pro R850 memory

    I was just wondering, since i have a lot of stuff in my laptop; is there a way, like a card, to extend my laptop's memory? As i noticed a big slot inside my laptop on the lower left side, so is there something for a memory extension i can put in ther

  • What can i do if i cant redeem my itunes card. It shows there "not properly activated"

    I tried to redeem my itunes card. it shown "not properly activated". What should i do?

  • How to create a USB pendrive with HUU for UCS

    hi, I have 4 UCS C220M3 that needs updates, and I downloaded HUU2.0.3d-1 for this as ISO file I really want to use a USB drive to boot the UCS of of the box before i shipthem out - So there are no network connectvity - just out of the box, boot to US

  • IDVD Newbie feeling his way....

    Goal: To make a 700mb.avi movie into a DVD I can playback on any DVD player. First, I get a message that says my project exceeds maximum content duration. Not sure what I can change in encoder settings that will fix that (its already set to Best Perf

  • Error while installing Oracle 11gR2 64 bit on windows764bit

    Hi, I want to install Oracle 11g database on my system. I have downloaded setup files for that. But while doing installation after 60% completed i am getting an error messagebox saying. File Not Found c:\Oracle11g\product\11.2.0\db_home1\bin\orandce1