home *** CD-ROM | disk | FTP | other *** search
/ How Computers Work (Alt) / HowComputersWork.iso / 3rdParty / Wilson / README.TXT < prev    next >
Encoding:
Text File  |  2001-06-06  |  31.1 KB  |  891 lines

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