home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / sharewar / winbatch / winbatch.exe / readme.txt < prev    next >
Encoding:
Text File  |  2002-01-22  |  31.8 KB  |  900 lines

  1.    WELCOME TO WINBATCH 2002b!
  2.  
  3.  
  4.  
  5.    WinBatch is the Windows Batch Language that you can use to write
  6.    real honest-to-goodness Windows batch files to control every
  7.    aspect of your machine's operation.  There are more than hundreds
  8.    and hundreds of different functions that allow you to do *anything* 
  9.    with WinBatch!
  10.  
  11.    This package contains all the pieces you need to create batch files
  12.    for Windows NT/2000 and  Windows 95/98/ME.  
  13.  
  14.    The pieces are:
  15.  
  16.    WinBatch Interpreter      32 bit version
  17.    FileMenu and PopMenu      32 bit version  
  18.  
  19.  
  20.  
  21.    This software package -- if you have the WinBatch+Compiler -- 
  22.    also contains:
  23.  
  24.    WinBatch Compiler         32 bit version
  25.  
  26.  
  27.  
  28.  
  29.    ======================================================================
  30.    SYSTEM REQUIREMENTS
  31.  
  32.    WinBatch requires an IBM PC or compatible running 
  33.    Microsoft Windows NT/2000 or Windows 95/98/ME.
  34.  
  35.  
  36. *****************************************************************************
  37. *****************************************************************************
  38. *****************************************************************************
  39. ***                                                                       ***
  40. ***                 Converting scripts to WinBatch 2001                   ***
  41. ***                                                                       ***
  42. ***    In general we have attempted to make WinBatch 2001 backwards       ***
  43. ***    compatible with previous versions. However, for various and        ***
  44. ***    sundry reasons some changes were made that may affect the          ***  
  45. ***    the execution of older scripts.                                    ***
  46. ***                                                                       ***
  47. ***    We've attempted to make a list of these changes that might         ***
  48. ***    break currently running scripts and to give you some               ***
  49. ***    background on the issues involved so that you can successfully     ***
  50. ***    modify your scripts to run under WinBatch 2001.                    ***
  51. ***                                                                       ***
  52. ***                                                                       ***
  53. ***                                                                       ***
  54. ***      **** Breaking changes introduced in the 2001a version ****       ***
  55. ***                                                                       ***
  56. ***  1) In DiskFree and DiskSize, the items in "drive-list" can no        ***
  57. ***     longer be separated with spaces (in order to now support UNC's    ***
  58. ***     containing spaces). Vertical bars " | " or tabs will work.        ***
  59. ***                                                                       ***
  60. ***  2) In ItemCount, trailing delimiters are now significant.            ***
  61. ***     This means that the comma-delimited list "a,b,c," has 4 items     ***
  62. ***     in it.  Older versions of WinBatch reported 3 items in the list.  ***
  63. ***                                                                       ***
  64. ***  3) In ItemInsert, trailing delimiters are now significant.  This     ***
  65. ***     means that if you specify a blank item ("") and an offset of -1,  ***
  66. ***     a blank item will be added to the end of the list, even if the    ***
  67. ***     list already has a trailing delimiter.                            ***
  68. ***                                                                       ***
  69. ***  4) The following functions no longer add a trailing delimiter to     ***
  70. ***     the returned list (some of these are "legacy" functions that      ***
  71. ***     are no longer documented):                                        ***
  72. ***                                                                       ***
  73. ***         AskFileText                                                   ***
  74. ***         AskItemList                                                   ***
  75. ***         ItemSelect                                                    ***
  76. ***         RegQueryItem                                                  ***
  77. ***         TextBox                                                       ***
  78. ***         TextBoxSort                                                   ***
  79. ***         TextSelect                                                    ***
  80. ***                                                                       ***
  81. ***                                                                       ***
  82. ***  5) FileExist now returns @FALSE if the file name contains            ***
  83. ***     any '/' characters (this change was actually made in WB 99M).     ***
  84. ***                                                                       ***
  85. ***                                                                       ***
  86. ***                                                                       ***
  87. ***  6) In WinBatch version 2001P the IconReplace function and            ***
  88. ***     IntControl 37 were modifed in support of Windows XP.  Please      ***
  89. ***     see documentation for exact changes.  The most important          ***
  90. ***     problem is that if you use custom icons (as opposed to icons      ***
  91. ***     supplied with the compiler) you may have to re-draw them          ***
  92. ***     to work properly on XP and newer machines.                        ***
  93. ***                                                                       ***
  94. ***                                                                       ***
  95. ***                                                                       ***
  96. ***                                                                       ***
  97. ***      **** Breaking changes introduced in the 98a version ****         ***
  98. ***                                                                       ***
  99. ***                                                                       ***
  100. ***  1) Time functions retutn a 4 year date instead of a 2 year date      ***
  101. ***                                                                       ***
  102. ***  2)  Several functions that return a delimited list no longer         ***
  103. ***      return a trailing delimiter, standardizing the structure         ***
  104. ***      of a delimited list variable.  Unless you are manipulating       ***
  105. ***      lists outside of the standard functions (Item...) this           ***
  106. ***      should not cause a problem.                                      ***           
  107. ***                                                                       ***
  108. ***  3)  Changed the way the following string sorting and comparison      ***
  109. ***      functions operate:                                               ***
  110. ***                                                                       ***
  111. ***         BinarySort                                                    ***
  112. ***         ItemSort                                                      ***
  113. ***         ItemSortNc                                                    ***
  114. ***         StrCmp                                                        ***
  115. ***         StriCmp                                                       ***
  116. ***         >, >=, <, and <= (operators)                                  ***
  117. ***                                                                       ***
  118. ***      Previously, they were sorting (or comparing) strings on a        ***
  119. ***      character-by-character basis.  They now perform a "word sort",   ***
  120. ***      which compares strings  based on their collation sequence.       *** 
  121. ***      Hyphens and apostrophes are considered of minor importance,      ***
  122. ***      and all other non-alphanumeric characters are sorted before      ***
  123. ***      any alphanumeric character.  This type of sort is also           ***
  124. ***      called a "dictionary" sort, as the fields are sorted into        ***
  125. ***      the same order that they would appear in a dictionary.           ***
  126. ***                                                                       ***
  127. ***                                                                       ***
  128. *****************************************************************************
  129. *****************************************************************************
  130. *****************************************************************************
  131.  
  132.  
  133.  
  134.    This package also contains assorted Microsoft compatible
  135.    NETWORK EXTENDERS.  They are generally installed by default.  
  136.    If you want the network extenders installed, the "Install 
  137.    Network Extenders" checkbox must be checked during the setup 
  138.    process.  If you missed installing the extenders, just re-run
  139.    setup and try again.
  140.  
  141.  
  142.    Extenders for Novell Netware and many additional Extenders may 
  143.    also be found in the "Extenders" subdirectory on the CD-ROM and 
  144.    also at our website.  Significant enhanced functionality is 
  145.    available with the various extenders.
  146.  
  147.    You can install the optional WIL Extenders by running their 
  148.    SETUP.WBTs (located in their respective directories on the CD), 
  149.    after you have installed Winbatch.
  150.  
  151.    Each extender has its own detailed HLP file and a TXT file describing
  152.    additions and changes.
  153.  
  154.    Additional information on these extenders (and the latest arrivals)
  155.    is available from our technical database at:
  156.  
  157.            http://techsupt.windowware.com 
  158.  
  159.    under the heading:  "WIL Extenders".
  160.  
  161.  
  162.    WIL Extenders are special purpose DLLs to extend the usability and 
  163.    friendliness of WinBatch.  Here's a PARTIAL list of some extenders 
  164.    on your CD:
  165.  
  166.  
  167.  
  168.    ====================
  169.    Control Manager Extender
  170.  
  171.    Perfect control over all Windows dialog boxes. See inside list boxes,
  172.    interrogate check boxes, set radio buttons, handle the new tabbed
  173.    dialogs. 
  174.  
  175.  
  176.    ====================
  177.    CpuInfo Extender
  178.  
  179.    CPU speed, benchmark and other CPU information extender. 
  180.  
  181.  
  182.    ====================
  183.    GPIB Extender
  184.  
  185.    Control GPIB capable lab equipment. 
  186.  
  187.  
  188.    ====================
  189.    HTML Dialog Extender
  190.  
  191.    The ultimate in WinBatch dialogs. Images, sounds, fonts colors and
  192.    even animated GIF's are supported. Make your dialogs look like web
  193.    pages.
  194.  
  195.    Requires Windows 98/2000 (or at least MSIE 4.0). 
  196.  
  197.  
  198.    ====================
  199.    Huge Math Extender
  200.  
  201.    Performs arithmetic on huge (up to 2000 digit) numbers.
  202.  
  203.  
  204.    ====================
  205.    IP Address Grabber Extender
  206.  
  207.    Get the machine's IP Addresses
  208.  
  209.    See help file for compatibilitity issues with Windows 95 and NT.
  210.  
  211.  
  212.    ====================
  213.    MAPI Extender
  214.  
  215.    Perform MAPI Operations
  216.  
  217.    Mostly for use with Microsoft Exchange
  218.  
  219.    ====================
  220.    Novell Netware Extenders
  221.  
  222.    Two different sets of extenders are avaialable when using the
  223.    Novell Netware clients for Novell 3, 4 and 5.  The NetwareX is
  224.    the newer, currently recommended extender.  Our previous version
  225.    of the Novell extenders are also available.
  226.  
  227.    ====================
  228.    ODBC Extender
  229.  
  230.    Our ODBC extender. 
  231.    Familiarity with ODBC required. 
  232.  
  233.  
  234.    ====================
  235.    Parallel Port Extender
  236.  
  237.    Talk to parallel ports. Communicate with obscure hardware devices.
  238.    Lab equipment. Home brew controllers. 
  239.  
  240.    Note: For Windows 95/98/ME ONLY.
  241.    Does not work with NT/2000
  242.  
  243.  
  244.    ====================
  245.    Postie Extender
  246.  
  247.    The Ultimate Internet Email extender. Sends and receives POP3,
  248.    IMAP4, and NNTP (newsgroup) email. Able to send an receive mime
  249.    or uuencoded attachments.
  250.  
  251.  
  252.    ====================
  253.    Printer Control Extender
  254.  
  255.    Assists in working with printer drivers. Sets default printer. Changes
  256.    printer properties, Installs and removes printers, etc.
  257.  
  258.  
  259.    ====================
  260.    Process Information Extender
  261.  
  262.    Retrieve information about processes and modules.
  263.  
  264.  
  265.    ====================
  266.    RAS Connectoid Extender
  267.  
  268.    Create, manage, modify, rename and copy the Dialup RAS
  269.    "connectoids" used in dial-up networking.
  270.  
  271.  
  272.    ==================== 
  273.    Registry Search Extender
  274.  
  275.    Registry Searcher. This extender, in combination with build-in WIL
  276.    Registry function and perform a search and replace of most registry
  277.    items.
  278.  
  279.  
  280.    ====================
  281.    File Search Extender
  282.  
  283.    Find files. Find data in files. Traverse directories. High speed file and
  284.    text search engine.  
  285.  
  286.    To copy, move, or delete file and directory structures, see the Shell
  287.    Operations extender
  288.  
  289.  
  290.    ====================
  291.    Serial Port Extender
  292.  
  293.    Talk to serial ports. Communicate with modems, X-10 household
  294.    controllers, lab equipment, pretty much any serial device. Script BBS
  295.    sessions. Does X/Y/Z-modem transfers. Write a phone dialer. Get your
  296.    stock quotes. No need to try scripting HyperTerminal, do it directly
  297.    with this extender. 
  298.  
  299.  
  300.    ====================
  301.    Shell Operations Extender
  302.  
  303.    Performs Explorer-style file operations with animated graphics. Can
  304.    also copy, delete, and move entire directory structures. Also has a
  305.    simple Progress bar and a MessageBox that will timeout!
  306.  
  307.  
  308.    ====================
  309.    WILX Utility Extender 
  310.  
  311.    Various Utility functions
  312.  
  313.    Note: WILX is already in the main WinBatch ZIP file. A seperate
  314.    download is not usually required.
  315.  
  316.  
  317.    ====================
  318.    WinInet Extender
  319.  
  320.    Use Windows built-in services to grab web pages (SSL too!) FTP and
  321.    Dial-up networking. Requires Windows 98/ME/2000 or at least MSIE
  322.    4.0 installed. 
  323.  
  324.  
  325.    ====================
  326.    WinSock Extender
  327.  
  328.    Our older Internet extender. Send Internet text-only email, grab web
  329.    pages, automate FTP sessions, and more. Supports direct access to
  330.    tcp/ip sockets. Incudes proxy/firewall support  
  331.  
  332.    For full email support see the Postie Extender. For better http://, https://
  333.    and ftp support see the WinInet extender.
  334.  
  335.  
  336.    ====================
  337.    Zipper Extender 
  338.  
  339.    ZIP and UNZIP files.
  340.  
  341.  
  342.  
  343.  
  344.  
  345.    Improvements from previous versions
  346.  
  347.    The file "The list of Fixes and Improvements.txt" details the 
  348.    many bug fixes and enhancements that have been made to the 
  349.    program since many previous releases.
  350.  
  351.  
  352.  
  353.  
  354.  
  355.    About the WinBatch Compiler
  356.  
  357.    Also available is our "WinBatch+Compiler," (if you have not  
  358.    purchased it yet).  With the WinBatch+Compiler, you can turn 
  359.    your WBT files into standalone EXE files that you can distribute 
  360.    on a royalty-free basis.
  361.  
  362.    Have a BIG network?  Want all your users to run your WBT files?
  363.    Compile the WBT files with the WinBatch Compiler and put the
  364.    EXEs up on the server.
  365.  
  366.    Making specialized WinBatch files for clients?  Don't want them
  367.    modifying your files?  Just compile the WBT files, and give the
  368.    EXEs to your client.
  369.  
  370.    Are you the "corporate guru"?  Get a compiler.  Compile those WBT
  371.    files and hand them out like candy.
  372.  
  373.    The WinBatch Compiler, a separate product from the WinBatch
  374.    Interpreter contained in these files, is available for $495.00,
  375.    plus shipping, if applicable.  The WinBatch Compiler includes a
  376.    copy of WinBatch.  In addition, if you buy a copy of Winbatch, you
  377.    have 90 days to upgrade to the Compiler and just pay the difference
  378.    in price.
  379.  
  380.  
  381.  
  382.  
  383.  
  384.    HOW TO INSTALL WINBATCH
  385.  
  386.  
  387.    Use our SETUP.EXE program, which will copy the files for you
  388.    and install a WINBATCH Start Menu or Program Manager group.
  389.  
  390.    To use our SETUP.EXE program...  
  391.  
  392.  
  393.      1) Close down all extraneous Windows applications.
  394.  
  395.      2) Double-Click on the SETUP.EXE program
  396.  
  397.      3) When the setup program asks for a directory, specify initial
  398.         directory, or accept the given default.
  399.  
  400.  
  401.    NOTE:  If you are updating from a previous version, and made any of the
  402.           WinBatch files READ-ONLY, remove the read-only attribute from
  403.           the files before running setup.
  404.           (Or else the setup process will hang)
  405.  
  406.  
  407.  
  408.    WinBatch can run in English, French, German, and "Val Speak".
  409.    The strings are controlled by the WWWDLANG.* files. If you
  410.    just launch WinBatch by itself, it will then automatically
  411.    run the "default.wbt" file.  The default.wbt file has a number
  412.    of options allowing you to perform various operations, including
  413.    changing the current language.
  414.  
  415.  
  416.  
  417.    An order form may be found in the WinBatch help file.  
  418.    Once you are viewing the order form, you can then select
  419.    the Print button to obtain a hard copy.
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  The following information may be found below:
  426.  
  427.     a) Information on our fully functional demos and our
  428.        "Registration Reminder" screens.
  429.  
  430.     b) A basic, concise explanation of our disclaimers.
  431.  
  432.     c) Installation instructions for our automated installation
  433.        program. 
  434.  
  435.     d) Generic uninstall instructions.
  436.  
  437.     e) Our update policy.
  438.  
  439.     f) On-line support.
  440.  
  441.     g) The long, drawn out legalese section, software license
  442.        information, limited warranty, trademarks, etc.
  443.  
  444.     h) Information on other products that we offer.
  445.  
  446.     i) Ordering information.
  447.  
  448.     j) How to find the Order Form.
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.                    REGISTRATION REMINDERS
  467.  
  468.  Unlicensed copies of Wilson WindowWare products are 100% fully
  469.  functional.  We make them this way so that you can have a real
  470.  look at them, and then decide whether they fit your needs or
  471.  not.  Our entire business depends on your honesty.  If you use
  472.  it, we expect you to pay for it.  We feel that if we treat you
  473.  well, you will treat us well.  Unlicensed copies of our 
  474.  products do have a registration reminder screen that appears
  475.  whenever you start the program.  This shouldn't really affect
  476.  your evaluation of our software.
  477.  
  478.  We're sure that once you see the incredible quality of our 
  479.  software, you will dig out your credit card, pick up the phone,
  480.  call the nice people at our 800 number and register the
  481.  software. 
  482.  
  483.  If you work for a large corporation, you can purchase most of
  484.  our products the same way you buy your retail software.  Just
  485.  send the purchase request up the line.  Most all the corporate
  486.  software suppliers (Egghead Corporate, Software Spectrum,
  487.  Corporate Software, Programmers Shop, and many others) purchase
  488.  considerable volumes from us on a regular basis.
  489.  
  490.  When you pay for the software you like, you are voting with
  491.  your pocketbook, and will encourage us to bring you more of the
  492.  same kinds of products.  Pay for what you like, and then, more
  493.  of what you like will almost magically become available.
  494.  
  495.  
  496.                         LEGAL MATTERS
  497.  
  498.  Of course the usual disclaimers still apply.  We are not 
  499.  responsible for anything at all.  Nothing.  Even if we are held
  500.  responsible, the limit of our liability is the licensing fees
  501.  you paid.  The full text of our license agreement is found near
  502.  the bottom of this file. 
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.                  HOW TO INSTALL THIS SOFTWARE
  520.  
  521.   Use our snazzy setup program...
  522.  
  523.         1) Close down all extraneous Windows applications.  
  524.            (You do have to be in Windows to run SETUP.EXE)
  525.  
  526.         2) Double-Click on the SETUP.EXE or use the Software
  527.            install facility (if available) in Control Panel.
  528.  
  529.         3) When the setup program asks for a directory, specify
  530.            an initial directory, or accept the given default.      
  531.  
  532.         4) When the screen comes up that asks you what you want
  533.            to install, do your selections, then hit the NEXT 
  534.            button to continue. If you want to install Network 
  535.            extenders or non-English language support, this is 
  536.            your opportunity.
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545.                     UN-INSTALL INFORMATION
  546.  
  547.  This software may be uninstalled via the uninstall option
  548.  in the Control Panel Add/Remove software dialog, or by running
  549.  the uninstal.exe program in the WinBatch/System subdirectory.  If 
  550.  you simply delete all the files first, you will not be able to
  551.  run the uninstall program and there may still be traces of the
  552.  program in various places on the system.
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.                         UPDATE POLICY
  572.  
  573.  Wilson WindowWare frequently updates its products.  There are
  574.  various kinds of updates, including Major updates, Minor
  575.  updates, and bug-fix updates.
  576.  
  577.  Minor and bug-fix updates for current versions are available
  578.  on our website at http://www.winbatch.com
  579.  
  580.  There is no charge for downloading and upading a current copy of
  581.  Winbatch with the downloadable updates.
  582.  
  583.  The policy and pricing for Major shareware updates vary.
  584.  Depending on the nature of the upgrade, length of time since
  585.  the previous major upgrade, desirability of new features added,
  586.  the extent of revisions to the printed manuals (if any), work
  587.  involved and possible price changes for new users, we may or
  588.  may not charge fees.  Update fees for major updates tend to
  589.  run 20% to 40% of the cost of the product.  Major updates tend
  590.  to occur every few years.
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.                       ON-LINE SUPPORT
  600.  
  601.  Wilson WindowWare has on-line support!
  602.  
  603.  Wilson WindowWare lives on the INTERNET. We maintain a
  604.  World Wide Web Server and an anonymous ftp site
  605.  
  606.     WWW URL    http://www.winbatch.com
  607.  
  608.  Tech support database is available at
  609.   
  610.                http://techsupt.winbatch.com
  611.  
  612.  and our WebBBS -- where you can post questions and code --
  613.  is available via a link from our Tech Support database.
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.                      THE LEGALESE SECTION
  628.  
  629.  WINBATCH          Copyright ⌐ 1991-2001 by Morrie Wilson.
  630.  WINBATCH+COMPILER Copyright ⌐ 1991-2001 by Morrie Wilson.
  631.  WEBBATCH          Copyright ⌐ 1996-2001 by Wilson WindowWare, Inc
  632.  
  633.  
  634.  
  635.                      SOFTWARE LICENSES
  636.                 SHAREWARE LICENSE - END USER
  637.  
  638.  Wilson WindowWare software is not and has never been public
  639.  domain software, nor is it free software. 
  640.  
  641.  Non-licensed users are granted a limited license to use our
  642.  software on a 21-day trial basis for the purpose of determining
  643.  whether the software is suitable for their needs.  Any use
  644.  of our software, except for the initial 21-day trial, requires
  645.  registration.  The use of unlicensed copies of our software,
  646.  outside of the initial 21-day trial, by any person, business,
  647.  corporation, government agency or any other entity is
  648.  strictly prohibited. 
  649.  
  650.  
  651.  SHAREWARE LICENSE - FOR DISTRIBUTION OF SHAREWARE FILES,
  652.  USER GROUPS, BBS's, ONLINE SERVICES, SHAREWARE VENDORS, and
  653.  OTHERS
  654.  
  655.  A limited license is granted to copy and distribute our
  656.  shareware software only for the trial use of others, subject to
  657.  the following limitations:
  658.  
  659.   1)    The software must be copied in unmodified form, complete
  660.         with the file containing this license information.
  661.  
  662.   2)    The full machine-readable documentation must be included
  663.         with each copy.
  664.  
  665.   3)    Our software may not be distributed in conjunction with
  666.         any other product without a specific license to do so
  667.         from Wilson WindowWare.
  668.  
  669.   4)    Vending of our software products in retail stores (by
  670.         "shareware rack vendors") is specifically prohibited
  671.         without prior written authorization.
  672.  
  673.   5)    No fee, charge, or other compensation may be requested
  674.         or accepted, except as authorized below:
  675.  
  676.      A) Non-profit user groups may distribute copies of the our
  677.         products to their members, subject to the above
  678.         conditions, without specific permission.  Non-profit
  679.         groups may collect a disk duplication fee not to exceed
  680.         five dollars.
  681.  
  682.      B) Operators of electronic bulletin board systems (sysops)
  683.         and web site operators (webmasters) may make our products 
  684.         available for downloading only as long as the above 
  685.         conditions are met.  An overall or time-dependent charge 
  686.         for the use of the bulletin board system or web site is 
  687.         permitted as long as there is not a specific charge for 
  688.         the download of our software.
  689.  
  690.      C) Mail-order vendors of shareware software approved by
  691.         the ASP may distribute our products, subject to the
  692.         above conditions, without specific permission.  Non-
  693.         approved vendors may distribute our products only after
  694.         obtaining written permission from Wilson WindowWare.
  695.         Such permission is usually granted.  Please write for
  696.         details (enclose your catalog).  Vendors may charge a
  697.         disk duplication and handling fee, which, when pro-rated
  698.         to each individual product, may not exceed eight
  699.         dollars.
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  LICENSED COPIES OF OUR SOFTWARE ARE GOVERNED BY THE FOLLOWING:
  709.  
  710.     THIS SOFTWARE IS NOT FOR SALE: The software is subject
  711.     to the following license terms and conditions.
  712.     
  713.     SOFTWARE LICENSE granted, when required fees paid, by 
  714.     Wilson WindowWare, Inc., a Washington corporation, with 
  715.     its mailing address at 5421 California Ave. SW. Seattle,
  716.     WA 98136. The software contained in this package is 
  717.     licensed to you as the end user. It is not sold.
  718.     
  719.     LICENSE: 1.0 The software contained in this package 
  720.     (hereafter referred to as "the Software") is copyrighted 
  721.     material owned by Wilson WindowWare, Inc. Payment of the
  722.     single copy license fee authorizes one named person to 
  723.     use the Software on one computer provided this copyright
  724.     is not violated and provided the rules outlined herein 
  725.     are observed.
  726.      
  727.     1.1 One person may use the Software on any single 
  728.     computer. This license can be transferred only once in 
  729.     any twenty-four hour period. You must pay for additional
  730.     copies of the Software if more than one person uses it 
  731.     during any 24 hour period of time, or if the Software 
  732.     is used on two or more computers. Neither concurrent use
  733.     on two or more computers, nor use by more than a single 
  734.     individual on a network is permitted without 
  735.     authorization and payment of other license fees.
  736.      
  737.     1.2 You may make copies of the software for backup 
  738.     purposes, as long as all such copies, along with the 
  739.     original, are kept in your possession or control.
  740.     
  741.     1.3 You may not make any changes or modifications to 
  742.     the Software, including, but not limited to, decompiling,
  743.     disassembling, or otherwise reverse engineering it. You 
  744.     may not rent or lease it to others. You may not use it 
  745.     on a computer network if more than one user can use it 
  746.     during any one 24 hour period of time.
  747.  
  748.     1.4 If you have licensed the WinBatch+Compiler product
  749.     you may compile scripts and, with the exception of
  750.     scripts that interpret or attempt to interpret the
  751.     script language, provide these compiled scripts 
  752.     (and any required DLLs) to any number of end users 
  753.     without additional licenses or payment of additional fees.
  754.  
  755.  
  756.  
  757.                     LIMITED WARRANTY
  758.  
  759.     Wilson WindowWare guarantees your satisfaction with this
  760.     product for a period of 90 days from the date of original
  761.     purchase. If you are dissatisfied with the product 
  762.     within that time period, return the package in saleable 
  763.     condition to the place of purchase for a full refund.
  764.      
  765.     Wilson WindowWare warrants that all disks provided are 
  766.     free from defects in material and workmanship, assuming 
  767.     normal use, for a period of 90 days from the date of 
  768.     purchase.
  769.      
  770.     Wilson WindowWare warrants that the program will perform
  771.     in substantial compliance with the documentation supplied
  772.     with the software product. If a significant defect in 
  773.     the product is found, the purchaser may return the 
  774.     product for a refund. In no event will such a refund 
  775.     exceed the purchase price of the product.
  776.      
  777.     EXCEPT AS PROVIDED ABOVE, WILSON WINDOWWARE DISCLAIMS ALL
  778.     WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING,BUT NOT
  779.     LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND 
  780.     FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE 
  781.     PRODUCT. SHOULD THE PROGRAM PROVE DEFECTIVE, THE 
  782.     PURCHASER ASSUMES THE RISK OF PAYING THE ENTIRE COST 
  783.     OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION AND 
  784.     ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES. 
  785.     
  786.     IN NO EVENT WILL WILSON WINDOWWARE BE LIABLE FOR ANY 
  787.     DAMAGES WHATSOEVER (INCLUDING WITHOUT LIMITATION DAMAGES
  788.     FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS
  789.     OF BUSINESS INFORMATION AND THE LIKE) ARISING OUT OF THE
  790.     USE OR THE INABILITY TO USE THIS PRODUCT EVEN IF WILSON 
  791.     WINDOWWARE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 
  792.     DAMAGES.
  793.      
  794.     THIS SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE OR 
  795.     RESALE AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS 
  796.     ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE, SUCH AS 
  797.     IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT 
  798.     NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC 
  799.     CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS 
  800.     SYSTEMS, IN WHICH THE FAILURE OF THE SOFTWARE COULD 
  801.     LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE 
  802.     PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES"). 
  803.     
  804.     WILSON WINDOWWWARE SPECIFICALLY DISCLAIMS ANY EXPRESS OR
  805.     IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.
  806.      
  807.     Use of this product constitutes your acceptance of this 
  808.     agreement and subjects you to its contents.
  809.      
  810.     U.S. GOVERNMENT RESTRICTED RIGHTS
  811.     Use, duplication, or disclosure by the Government is 
  812.     subject to standard shrink-wrapped software restrictions.
  813.     Contractor/manufacturer is Wilson WindowWare, Inc. 
  814.     5421 California Ave SW / Seattle, WA 98136
  815.  
  816.  
  817.  
  818.  
  819.                     TRADEMARKS
  820.  
  821.   Microsoft and MS-DOS are registered trademarks of the
  822.   Microsoft Corporation.
  823.   Windows is a trademark of Microsoft Corporation.
  824.  
  825.   WinBatch          is a registered trademark of Wilson WindowWare, Inc.  
  826.   WebBatch          is a registered trademark of Wilson WindowWare, Inc.
  827.   WinBatch+Compiler is a trademark of Wilson WindowWare, Inc.  
  828.  
  829.  
  830.  
  831.  
  832.  
  833.  
  834.  
  835.  
  836.  
  837.               *** WILSON WINDOWWARE PRODUCTS ***
  838.  
  839.  
  840.  WinBatch        - Write your own Windows Batch Files!  Dialogs,
  841.                    automatic program control, and powerful data
  842.                    manipulation lets you control your Windows.
  843.                    A must for the power user.  Includes FileMenu
  844.                    and PopMenu.                           $99.95
  845.  
  846.  WinBatch        - NOT A SHAREWARE PRODUCT.  The WinBatch
  847.     +              compiler can compile WinBatch batch files into
  848.  COMPILER          standalone EXE files that may be distributed
  849.                    on a royalty free basis.  Great for networks
  850.                    and corporate gurus.  Compile your WBT files
  851.                    and then hand them out like candy.    $495.00
  852.  
  853.  WebBatch        - Quick and easy scripting language for Web
  854.                    Servers running Windows NT.  60-day FREE eval
  855.                    copies available.  Purchase includes a FREE
  856.                    copy of WinBatch.  Get an eval copy from:
  857.                    
  858.                    http://webbatch.windowware.com        $295
  859.  
  860.  
  861.  
  862.  
  863.  
  864.                     ORDERING INFORMATION
  865.  
  866.  Licensing our products brings you wonderful benefits.  Some of
  867.  these are:
  868.     - Gets rid of that pesky reminder window that comes up when
  869.       you start up the software.
  870.     - Entitles you to one hour free phone support for 90 days
  871.       ("your dime").
  872.     - Insures that you have the latest version of the product.
  873.     - Encourages the authors of these programs to continue 
  874.       bringing you updated/better versions and new products.
  875.     - Gets you on our mailing list so you are occasionally
  876.       notified of spectacular updates and our other Windows
  877.       products.
  878.     - And, of course, our 90-day money back guarantee.
  879.  
  880.  
  881.   An order form may be found in the application help file.  
  882.   Once you are viewing the order form, you can then select
  883.   the File - Print Topic menu item to obtain a hard copy.
  884.  
  885.  
  886.  
  887.  
  888.           
  889.           
  890.           
  891.           
  892.           
  893.           
  894.           
  895.           
  896.           
  897.           
  898.  
  899.  
  900.