@echo off CLS if %1x == x goto help if %2x == x goto help echo This will copy all the AUCTION files from %1 to %2\AUCTION echo Press Ctrl Break to abort or any other key to continue pause >nul mkdir %2\AUCTION copy %1*.* %2\AUCTION goto END : help echo AUCTION Installation echo --------------------------------------- echo Usage: INSTALL [source:] [destination:] echo --------------------------------------- echo Example: To install AUCTION from A: to the C: drive echo At the prompt type INSTALL A: C:ÿ : END