Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Trying to see if I can do something with command prompt?
Is it possible to some how write a program that will execute a bunch of command prompt commands? If so, can you teach me a thing or 2 or give me a link to a good website to learn it from?
2 Answers
- 9 years agoFavorite Answer
just write a batch file. Open up notepad, type in the dos commands, save it as a yourname.bat then run the file.
For example, all of this below could be in a bat file and when you run it it does it all.
cd c:\
copy file1.txt file2.txt
del file1.txt
Examples/more info below