home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / acmg_016.zip / lock.cmd < prev    next >
OS/2 REXX Batch file  |  2000-08-12  |  809b  |  20 lines

  1. @echo off
  2. rem -----------------------------------------------------------
  3. rem Simple script to lock Account Manager data with PGP and ZIP
  4. rem Author: Mario Sebastiani (aka Pippo_2)
  5. rem E-Mail: pippo_2@libero.it - pippo_2@bbs.quasarbbs.com
  6. rem -----------------------------------------------------------
  7.  
  8.  
  9. rem -----------------------------------------------------------
  10. rem Please, set these variables to fit your real path
  11. rem -----------------------------------------------------------
  12. set ZIP_FILE=d:\util\zip.exe
  13. set PGP_FILE=d:\pgp\pgp.exe
  14. rem -----------------------------------------------------------
  15.  
  16.  
  17. if exist accmgr.ini %ZIP_FILE% -o -m -u account accmgr.ini
  18. if exist account.db %ZIP_FILE% -o -m -u account account.db
  19. if exist account.zip %PGP_FILE% -o accmgr.pgp -cw account.zip
  20.