Windows Command queue

batchcommand linequeuewindows

I'm thinking if does exist some kind of software that can put in a queue a bunch of windows commands. For example I can say to first copy some file somewhere, then rename those, then delete the old files, then edit one of them etc. without waiting the effective execution of any of those passages. This could be useful when copying big files that take a lot and I don't want to sit in front of the computer keeping the eyes on the progress bar.

Does anything like this exist?

Best Answer

easiest thing to do is to write a batch file for what you want do, for example open notepad and copy the following:

@echo off
echo Starting batch script
copy c:\temp\*.* c:\temp2\*.*
del c:\temp2\test.exe
echo all file operations complete

Next, save this somewhere as anything .bat and you can run it either by double clicking, or going to the command prompt and typing its name. All operatings you write in it will get processed in order.

Related Question