home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s141 / 1.ddi / WINFILES.ZIP / EXPORTS.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-03-07  |  707 b   |  24 lines

  1. echo off
  2. echo  
  3. echo  Runs EXEDUMP to add any found exports into the specified .dat file
  4. echo ════════════════════════════════════════════════════════════════════
  5. echo  
  6. if "%1"=="" goto info
  7. if "%2"=="" goto info
  8. echo  Examining all specified files %1.  Please wait.
  9. echo  
  10. for %%f in (%1) do exedump -exports -nobanner %%f >> %2.dat
  11. goto exit
  12. :info
  13. echo  Command line:  
  14. echo     EXPORTS [path\wildcards]  [target DAT file]
  15. echo  
  16. echo  Example:
  17. echo     exports \windows\system\*.exe  win30
  18. echo  
  19. echo  Example results:
  20. echo     All of the .EXE files in the directory \WINDOWS\SYSTEM are examined 
  21. echo     for exports, and any found are added to the file WIN30.DAT.
  22. echo  
  23. :exit
  24.