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

  1. @echo off
  2. rem -------------------------------------------------------------
  3. rem Simple script to unlock 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. rem -----------------------------------------------------------
  9. rem Please, set these variables to fit your real path
  10. rem -----------------------------------------------------------
  11. set UNZIP_FILE=d:\util\unzip.exe
  12. set PGP_FILE=d:\pgp\pgp.exe
  13. rem -----------------------------------------------------------
  14.  
  15. if exist accmgr.pgp %PGP_FILE% -d accmgr.pgp -o account.zip
  16. if exist account.zip %UNZIP_FILE% account.zip
  17.