home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo Peforms an inventory of executable program files and puts the results in a
- echo comma-delimited ASCII database file called INVENTRY.DB. The search extends
- echo inside archive files such as .ZIP files. Also, a custom output format is
- echo specified.
- echo.
- echo This might be useful for a software inventory or a software license audit.
- echo.
- echo Press any key to begin searching...
- pause >nul
- echo.
- echo ******** In this demonstration, the file is not actually created. Instead,
- echo output is directed to the screen.
- echo.
- echo on
- ffg /p *:*.[com,exe] /z /fs! /f,nsdt:r
- @echo off
- echo Done. Press any key for next demonstration...
- pause>nul
-