"RCL" folder in all hard drives

Can someone help creating a batch file?
I want to locate "RCL" folder in all hard drives on a computer and copy few important files and folders from this directory.It needs to be DOS batch file.

I wrote this batch script to complete this task but it did not work..I do not get any error either.please suggest
locate "RCL" folder in all hard drives on a computer
@echo off & setLocal EnableDELAYedeXpansion
Script :-
==============================================
for %%d in (c d e f g h i j k l m n o p q r s t u v w x y z) do (
  if exist %%d: (
      for /f "tokens=* delims= " %%a in ('dir/b/s %%d:\RCL 2^>nul') do (
        echo %%d x "%%a"

Similar Messages

  • I redirected iTunes to an external drive and moved my iTunes library and folder, but my hard drive is still low on space.  How can I be sure that my music is all on the external HD ONLY, especially with the new iCloud technology?

    I redirected iTunes to an external drive and moved my iTunes library and folder, but my hard drive is still low on space.  How can I be sure that my music is all on the external HD ONLY, especially with the new iCloud technology?  It doesn't look like I created any more space by doing this, AND I totally lost all my iTunes playlists.  I'm not sure if because I added old library materials manually if this messed up my playlists, or if the new location is just not reading my moved library.  In any case, I followed step by step instructions and found a few holes and thought I'd just "figure it out" but I guess I'm not as smart as I thought since I'm still scratching my head many hours later.
    Thanks for any support ;-)
    Eaglerocker

    Quick answer if you use iTunes' default preferences settings:  Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive.  Open iTunes and immediately hold down the option (alt) key (shift on Windows) so you get a prompt to select a library, then guide it to the 'iTunes Library.itl' file in the moved iTunes folder.
    If this is to a new computer and you put the copied iTunes folder in the default location of Macintosh HD > Users > *User Name* > Music  then you don't even need to start with the option key held down, iTunes will automatically look for it there.  (Make sure there isn't anything already in the iTunes folder there that you want to keep since you will be replacing it with the one you are moving.)
    iTunes: How to move [or copy] your music [library] to a new computer [or another drive] - http://support.apple.com/kb/HT4527 - a somewhat bewildering and not always easily understandable set of options.

  • I put all my itunes folder on external hard drive, now I want to put it back on the mac how do i do this

    put all my itunes folder on external hard drive, now I want to put it back on the mac how do i do this.

    Drag the entire iTunes folder back to /Music.

  • How do I create a new folder in my hard drive - free agent go flex drive - on the mac book air?

    I have just starting using a macbook air 13" and trying to sort out my folders, therefore trying to create a new folder within my hard drive, but the option is not coming up when I right click.

    FORMAT TYPES
    FAT32 (File Allocation Table)
    Read/Write FAT32 from both native Windows and native Mac OS X.
    Maximum file size: 4GB.
    Maximum volume size: 2TB
    You can use this format if you share the drive between Mac OS X and Windows computers and have no files larger than 4GB.
    NTFS (Windows NT File System)
    Read/Write NTFS from native Windows.
    Read only NTFS from native Mac OS X
    To Read/Write/Format NTFS from Mac OS X, here are some alternatives:
    For Mac OS X 10.4 or later (32 or 64-bit), install Paragon (approx $20) (Best Choice for Lion)
    Native NTFS support can be enabled in Snow Leopard and Lion, but is not advisable, due to instability.
    AirPort Extreme (802.11n) and Time Capsule do not support NTFS
    Maximum file size: 16 TB
    Maximum volume size: 256TB
    You can use this format if you routinely share a drive with multiple Windows systems.
    HFS+ ((((MAC FORMAT)))) (Hierarchical File System, a.k.a. Mac OS Extended (Journaled) Don't use case-sensitive)
    Read/Write HFS+ from native Mac OS X
    Required for Time Machine or Carbon Copy Cloner or SuperDuper! backups of Mac internal hard drive.
    To Read HFS+ (but not Write) from Windows, Install HFSExplorer
    Maximum file size: 8EiB
    Maximum volume size: 8EiB
    You can use this format if you only use the drive with Mac OS X, or use it for backups of your Mac OS X internal drive, or if you only share it with one Windows PC (with MacDrive installed on the PC)
    EXFAT (FAT64)
    Supported in Mac OS X only in 10.6.5 or later.
    Not all Windows versions support exFAT. 
    exFAT (Extended File Allocation Table)
    AirPort Extreme (802.11n) and Time Capsule do not support exFAT
    Maximum file size: 16 EiB
    Maximum volume size: 64 ZiB
    You can use this format if it is supported by all computers with which you intend to share the drive.  See "disadvantages" for details.

  • What is the opt folder in my hard drive?

    What is the opt folder used for in my hard drive? All I know it has some files for GIMP and gutenprint.
    Should I leave that folder alone?

    Many open-source software projects (like gimp) use the /opt folder. If it's not there, they will create it when you install them.
    In a standard unix-like operating system (and darwin, the unix-like foundation of mac os x is no different), the core binaries are installed in /usr/bin or /usr/sbin, and core libraries are installed in /usr/lib, and there are specific directories where the system looks for specific types of information... However there are lots of dependencies amongst this core functionality: more than one binary application can use the same library.
    If the user decided to install some additional software, (and usually the admin password is needed to do it, right), the user has authorized the installer to do what it needs to do to get the software installed, even if this means updating one of the libraries to the most recent version. In this case, what happens to all the other software already installed that used the old library? Well... what happens, is none of the old programs work anymore.
    The workaround has been to create a separate directory for additional software installs, so that the core functionality in /usr won't be threatened. Many software projects created a directory inside /usr called /usr/local in which they install their components. Other projects use the /opt directory. Others use /opt/local.
    This is why, in unix-like operating systems, you find repititions of the same folders in other folders (i.e., there is a /usr/bin and a /usr/local/bin and an /opt/bin). The "bin" is a common name for folders that contain binaries (commands and applications that are executable and built for the specific operating system that they are running under), and "lib" is a common name for folders that contain libraries. You can find "bin" and "lib" folders throughout your system.
    One downside to this is that additional programs installed into the "opt" directory could interfere with the ones that are already there, and for this reason, some programs will create their own directory all to themselves and install everything they need there, even if most of it is a copy of libraries that are already present somewhere else on the system--space is less and less of an issue in the age of terrabytes.
    If you learn make your own binaries by compiling them from source code (way easier than it sounds, as you usually only have to type "./configure" and wait an hour for it to finish, "make", wait another hour, and then "make install"--really that's all there is to it) then you can control which directories the software uses (whether to use /usr, /opt, or to create a new directory entirely) plus you can run lots of cool free software.
    So that's what the opt folder on your hard drive is for.

  • Exporting Images to a folder on the hard drive

    I used to be able to export images to a selected folder on my hard-drive without having to identify the folder for every image.
    Now when I export I need to select the folder on my hard-drive for each image even thought I'm going to process 50+ images for that folder.
    What is wrong & how can i fix it?
    Can anyone help?
    I'm using Lightroom 5.

    Thanks for the quick reply.
    I just tried it again and it seems to be working....
    If it happens again, will use export with previous.
    I was exporting the normal way through the library but my sub-folder was on my hard-drive.
    ChrystiaC
    www.chrystiachudczak.com

  • Lightroom 5 is tied to my photos in a folder on my computer, if I move that folder to a hard drive, how to I connect Lightroom to the new location on the hard drive vs my computer?

    Lightroom 5 is tied to my photos in a folder on my computer, if I move that folder to a hard drive, how to I connect Lightroom to the new location on the hard drive vs my computer?

    How to recreate iTunes Library
    No content shows up in iTunes after updating

  • My ITunes library was wiped from Itunes app on my PC, but it is still in a folder on my hard drive. How can I reinstall my library back to the Itunes app? My library is available in Itunes on my Ipad but I can't find an option to synch to my PC?

    My ITunes library was wiped from the Itunes app on my PC, but I think the files are still in a folder on my hard drive. How can I reinstall my library back to the Itunes app? My library is available in Itunes on my Ipad but I also can't find an option to synch to my PC?

    How to recreate iTunes Library
    No content shows up in iTunes after updating

  • Two drives : same buffer on all hard drives ?

    I just ordered a SATA Maxtor drive 300G 7200, Buffer 16Mo (model 6B300S0) to add onto the second bay of my G5 DP 1.8 Ghz.
    The original drive (that will be kept in place) is also from Maxtor, 80G 7200, Buffer 8Mo.
    I just went by this article from apple support "http://docs.info.apple.com/article.html?artnum=300355".
    It says
    "Storage :
    Two Serial ATA controllers supporting up to 150-MBps data throughput per hard drive
    Two 3.5-inch hard drive expansion bays with drive guides for a second drive
    One 80GB or 160GB 7200-rpm Serial ATA drive installed in standard configurations(5)
    Support for up to two internal Serial ATA drives; 500GB maximum system capacity(5)
    8MB memory buffers on all hard drives"
    Is this "8MB memory buffers on all drives" restrictive, meaning there might problematic to have two hard drives running with different buffers ?
    Thank you for any suggestion, I still have time to cancel my order and order another drive with 8 MB buffer before tomorrow..
    Luc

    Thank you for your reply,
    As a matter of fact, the Apple report is from october 2004, and my machine from April 2005, not much further away. I have found an happy report in XRL8yourmac from sept 2004 describing no problem with the same drive in a Dual 2.5 GHz Power Mac G5 .
    The writer says it ran faster than the original 250GB Maxtor 7Y250M0 (8Mo buffer), but did not say if the two drives are running allong well or if he did replace the 250 by the 300. I understood that we cannot instal more than 500 Gig total in a G5 this generation ??
    My specific question is :
    Is it any reason to think that running two SATA drives with different size buffers would be problematic ?
    Many thanks
    Luc

  • HT201250 Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    Hi, I had updated folder on my hard drive wich was wrongly replaced with a folder from my external drive. I m not using time machine. How can i recover that updated folder? (it was done on 3-5-12)

    If the folder was replaced, it was written over.
    Nothing short of forensic data recovery (probably involving taking the drive apart to scan the discs seperately) is going to recover anything (if indeed even that will).

  • Moving iTunes music folder on another hard drive

    My hard drive is getting full but I want to download more music. Is there any way to move the folder to another hard drive?

    http://support.apple.com/kb/ht1449
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive/
    http://support.apple.com/kb/ht1449
    http://support.apple.com/kb/HT1751

  • How do i drag a folder onto my hard drive?

    How do i drage a folder onto the hard drive when requestted. I am trying to install some software.

    Are you getting a message similar to this...
    ... if so, do exactly that, drag the icon over the folder icon and let go. The software will be copied over to the Applications folder within your HARD DRIVE.

  • Creative Licensing Services waking up all hard drives, even offline drives.

    I wasn't sure where to post this or report a bug, but these two services seem to have incorrect behavior. They will scan every hard drive in the system, which will wake up every drive in the computer, even if the drives are set to "Offline" in Disk Management.
    Creative Audio Engine Licensing Service (CTAELicensing.exe)
    Creative ALchemy AL6 Licensing Service (AL6Licensing.exe)
    For what purpose do these services need low level drive access to every drive in the system? I have 3 disk drives and an SSD, I like to keep my disk drives turned off for silence, but whenever these two services run, respective programs lag as the computer spins up every hard drive one at a time. I suspect this would happen to external USB drives too.
    Here's a performance monitor screenshot of CTAELicensing.exe waking up all hard drives when you click the "encoder" tab of "Creative Audio Control Panel". (for Dolby Digital Live and DTS Connect)
    And here's another performance monitor screenshot of AL6Licensing.exe waking up all drives when I launch an ALchemy enabled game.

    Forgot to mention, I've seen this happen on Windows 7 x64 and Windows 8 CP x64 on both an X-Fi Titanium HD and a X-Fi Titanium Fatal1ty Pro.

  • What is the best way to archive old e mail folders without buying software. I tried to drag them into a folder on the hard drive but they get saved in a strange format

    What is the best way to archive old e mail folders without buying software. I tried to drag them into a folder on the hard drive but they get saved in a strange format.

    This is on sale for US $12:
    http://www.mupromo.com/?ref=4506

  • Importing a contact folder from external hard drive onto new iphone

    It is kind of a long story...my mom was updating iphone on computer when computer crashed. iphone crashed. had friend move all info from crashed computer onto external hard drive. got new iphone.
    so, she no longer has a computer and we have to share mine. she has her own itunes on an external drive and i have my own itunes on another hard drive. i got almost everything except the contacts moved back on her phone. i see the folder and contacts in a 'contact' folder on the external hard drive, but how do I move that to the new iphone without it being in outlook/google/yahoo. i tried 'adding folder' to the library containing the contacts, but that didn't work.
    any suggestions? thanks!!!

    thanks for the advise about the two users. so, i did that. but, now cannot seem to import the contact folder into the Address Book. the files in the 'contact'-hard drive are called CONTACT files (.contact). i don't know what that means. can i open those in the address book?

Maybe you are looking for