Ok so I want to write a batch file we can call it setup.bat that when ran asks you to chose by typing from 8 listed options lets say Option 1 is install and option 2 is move option 3 is copy and so on so if you want to run option 1 you would type install, now each of these options is going to be its own batch file that the setup.bat will start (I think call is the right term) so when you type install it starts or calls the install.bat I have made, then I need the setup.bat to pause or wait well the install.bat runs. When the install.bat is done running I then need the setup.bat to ask you if you would like to pick any other option or finish, by typing finish it will then run a cleanup.bat. I have made all the option batch files and cleanup batch file which are mostly just a few lines of code like
xcopy "C:\install.bat" "C:\Program Files\Pirates" /y
del /q/f "C:\install.bat"
which is all very simpale so I need help with the setup batch file cause Im very new to this so if any one knows how to do all that please explain in detail how thanks