|

| |
OLYMPUS 2500 MACRO to quickly move jpgs from media to your PC
REM: For the Olympus 2500L
REM: I DON'T recommend the camera, but have been asked by several
REM: owners to automate the capture and transfer of pictures to harddrive
REM: this creates a directory 'photos' on your C Drive, and MOVES (erases)
pictures from the digital media, and stores them on
REM: your local harddrive (much faster access)
REM: Highly recommend you download 'album.exe' from Microsoft's webpage for
powerpoint2000
REM: This ASSUMES you have your removable media as 'f' drive. You may have to
edit
REM: this to the correct drive on your system
REM: All the above lines can safely be deleted, simply copy & paste the stuff
below
REM: to create a batch file (oly2500.bat)
c:
mkdir photos
cd\
f:
move F:\DCIM\100olymp\*.* c:\photos
|