home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Product / Product.zip / sm2try.zip / EHSININE.CMD < prev    next >
OS/2 REXX Batch file  |  1993-11-12  |  1KB  |  31 lines

  1. /*====================================================================*/
  2. /*  Name:  EHSININE.CMD  -  Installation - EHSUI.INI file handling    */
  3. /*====================================================================*/
  4. /*                                                                    */
  5. /*  Licensed Materials - Property of IBM                              */
  6. /*                                                                    */
  7. /*  5621-404 (C) Copyright IBM Corp. 1993                             */
  8. /*  5622-018 (C) Copyright IBM Corp. 1993                             */
  9. /*                                                                    */
  10. /*  All rights reserved.                                              */
  11. /*  US Government Users Restricted Rights -                           */
  12. /*  Use, duplication or disclosure restricted                         */
  13. /*  by GSA ADP Schedule Contract with IBM Corp.                       */
  14. /*                                                                    */
  15. /*  See Copyright Instructions.                                       */
  16. /*                                                                    */
  17. /*====================================================================*/
  18. /* Erase QLANG NUM value          */
  19.  
  20. arg inipath
  21.  
  22. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  23. call SysLoadFuncs
  24.  
  25. inifile=inipath'\EHSUI.INI'
  26.  
  27. call SysIni inifile, 'QLANG', 'NUM', 'DELETE:'
  28.  
  29. END:
  30. exit 0
  31.