home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / utility / batsh201 / batsh201.txt < prev    next >
Text File  |  1995-12-09  |  3KB  |  83 lines

  1. BATSH201.ZIP is a replacement for previous BATSHxxx.ZIP
  2. It includes program and sample-files.
  3.  
  4. BATSH.EXE (v2.01) 
  5. -----------------
  6. To run Windows commands from a file.
  7. Line by Line.
  8. Like BATCH (.BAT) files in DOS,
  9. but with some windows specific commands,
  10. and not all the DOS features.
  11. For WINDOWS 3.1 (FreeWare)
  12.  
  13. Installation
  14. ------------
  15. Place the files BATSH.EXE and BATSH.HLP together
  16. anywhere on the disk.
  17. Write with NOTEPAD a text file with one command per line.
  18. Save the text file with the extension .BSH.
  19. Associate with File-Manager the program BATSH.EXE
  20. to the BSH extension.
  21. Run your new command-file with a double click from File-Manager. 
  22.  
  23.  
  24. Release Notes
  25. -------------
  26.  
  27. Version 2.01:
  28.  
  29. $PASSWORD did not hide the characters.
  30.           this is a bugfix from version 2.0
  31. $VER      special variable with the 3digit version number
  32. INC var [+/- val]
  33.           variables (var) containing numeric values can be
  34.           increased/decreased with an optional value (val)
  35.           default is 1.
  36. IF %var%==>%var%  ( ==> for numeric values only )
  37.           when comparing numeric variable values,
  38.           the additional > character defines a 
  39.           greater or equal compare.
  40. IF exist  $TYPE=OTHER for files with strange data e.g. 0 length      
  41.  
  42.  
  43. Version 2.0 
  44.  
  45. The ASK and the CHOICE command are integrated into 
  46. the MESSAGE command.
  47. BATSH files from previous versions are not compatible
  48. with version 2 files, if they were using the ASK or CHOICE
  49. command.
  50.  
  51. CD    change current directory (new)
  52. FONT    toggle fixed- or variable-pitch display font (new)
  53. IF    conditions to branch program execution
  54.     - IF EXIST does a file-type check
  55. MD    make a new directory (new)
  56. MENU    define own BATSH menu options (new)
  57. MESSAGE    display a message box for user response
  58.     - ASK and CHOICE options now at the end of a message
  59.     - the size of the message box is self adjusting
  60.     - can include text files
  61. RD    remove a directory (new)
  62. RESTART    restart WINDOWS
  63.     - run DOS program before restarting WINDOWS
  64. RUN    run a DOS or WINDOWS program
  65.     - FULLscreen option
  66. SHOW    modify the display status of a window
  67.     - FULLscreen option
  68.  
  69. A new variable type is introduced:
  70.   INI variables:  file|section|keyname
  71. With this type of variables, you can access initialisation
  72. files from WINDOWS and other applications.
  73. You can read information by referring to the variable as
  74.   %file|section|keyname%
  75. and you write or delete entries with the SET command.
  76.  
  77. ----------------------------------------------------------------
  78.  Thomas Nyffenegger, FMI, PBX 2543, 4002 Basel, CH
  79.  Email: nyffenegger@fmi.ch
  80.  Web:   http://www.fmi.ch/groups/ThomasNyffenegger/Group.html
  81. ----------------------------------------------------------------
  82.  
  83.