Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
I want to make a bat file
Name: sean thorkilsen Date: March 31, 2000 at 10:56:24 Pacific
Comment:
I want to know the dos commands to make a bat file , so i deletes all the mp3s on my hard drive accept for "my folder"when I start up my computer
Name: StormWlf Date: March 31, 2000 at 11:04:18 Pacific
Reply:
a bat file is a text file tha runs a series of commands You can use notepad or edit in dos Try looking at deltree /? for the command.
0
Response Number 2
Name: Preston Date: March 31, 2000 at 22:19:33 Pacific
Reply:
Well, you have to know where the mp3 files are in order to write a *.bat file to erase them. Let's assume all the mp3 files are in a directory named "music". Here is the DOS commands to use.
c: cd \music erase *.mp3
You can use edit.com or notepad and copy these lines. Then save the program to the Windows directory under a name you'll remember, like "erase.bat".
The first line, c:, is the DOS command to change to the c: hard drive. The second line, cd \music is the DOS command to change directory to the \music directory. The third command erase all files ending in mp3.
Summary: I'm and old PC user I don't use dos any more so that's why I need help on this thing that I want to do. I want to make a custom boot disk that shows want ever I want like ...............................
Summary: Hey .. .i've been wondering is there anyway to make a .bat file to run programs on a usb?.. so that it will either ask you to input a name to run the software.. or it will give u a list to chose from....
Summary: Ok here is what i want to do. I want to start a bat file and have it search the current directory for any SFV files. If it finds them i want it to execute D:\SFVcheck Anyway to do this?...