User input can be done thusly: @Echo Off Echo Press 1 if you want to copy files Echo Press 2 if you do not want to copy files Echo Please make your selection... After throwing that code in a batch file (notice it doesnt actually do anything besides display text, but ill get to that in a minute), create 2 more batch files. one named "1.cmd" and the other "2.cmd". In "1.cmd" you place all the files you want to copy, and in "2.cmd" you pick up the setup where you left off. Explanation: In the code above, all it does is print text and displays it to the user. When its done, it brings it back to the command prompt at the directory where the batchfile was run. In this directory is where you place 1.cmd and 2.cmd. When the user presses 1 or 2, it executes the appropriate batch file. Simple! You can ofcourse change the names of the 1.cmd and 2.cmd, except you'll need to prompt the user to type in the filename of the command file, rather then just 1 or 2. Hope this helps!