home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / FFG153.ZIP / DEMOBAT.ZIP / INVENTRY.BAT < prev    next >
DOS Batch File  |  1993-06-25  |  694b  |  21 lines

  1. @echo off
  2. cls
  3. echo Peforms an inventory of executable program files and puts the results in a
  4. echo comma-delimited ASCII database file called INVENTRY.DB.  The search extends
  5. echo inside archive files such as .ZIP files.  Also, a custom output format is
  6. echo specified.
  7. echo.
  8. echo This might be useful for a software inventory or a software license audit.
  9. echo.
  10. echo Press any key to begin searching...
  11. pause >nul
  12. echo.
  13. echo ******** In this demonstration, the file is not actually created.  Instead,
  14. echo          output is directed to the screen.
  15. echo.
  16. echo on
  17. ffg /p *:*.[com,exe] /z /fs! /f,nsdt:r
  18. @echo off
  19. echo Done.  Press any key for next demonstration...
  20. pause>nul
  21.