Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Batch files and crc32

Status
Not open for further replies.

Telsa

Programmer
Jun 20, 2000
393
US
I'm trying to create a batch file that will run crc32.exe on all files in all folders from a certain folder level. <br><br>I'm not sure how to write the all folders/all files line.<br><br>Can anyone help me?<br><br>Thanks!<br><br>Mary :eek:)<br><br>PS: I'm running NT 4.0
 
&nbsp;&nbsp;&nbsp;&nbsp;When running programs from a batch file, it's easy to remember that programs are called in the same fashion as they are at the command prompt. For example, if you would run a program from the command prompt by typing <i>AProgram \ADirectory\*.*</i> then you could write a batch file like:<br><font color=blue><br>@echo off<br>echo Running AProgram...Please wait<br>AProgram \ADirectory\*.*<br>echo Done!<br>pause<br>echo on<br></font><br> <p>James P. Cottingham<br><a href=mailto: > </a><br><a href= Veneer Co., Inc.</a><br>All opinions are mine alone and do not necessarily reflect those of my employer.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top