@ECHO OFF ECHO SPLIT Written By Gerald Bonne ECHO Now putting the parts back together, please wait... COPY /B part.001 + part.002 + part.003 allparts.exe ECHO Now renaming the file back to it's original name... IF EXIST "VisualMediaExplorer.exe" GOTO DESTEXISTS ECHO If you have an error message here your DOS probably ECHO does not support long file names. You will then find ECHO the complete file as "allparts.exe" ECHO Rename results: REN allparts.exe "VisualMediaExplorer.exe" GOTO END :DESTEXISTS ECHO The destination file "VisualMediaExplorer.exe" already exists!! ECHO Your file has been rebuilt as "allparts.exe" :END ECHO ... ECHO Finished!