home *** CD-ROM | disk | FTP | other *** search
/ 300 Favorite Games / 300GAMES.iso / 74 / install.wbt < prev    next >
Text File  |  1993-05-10  |  3KB  |  106 lines

  1. ;=========================================================================
  2. ;                                Cross Words 
  3. ;                              Deluxe Edition         
  4. ;                         Written by Edward E. Dellow        
  5. ;                    Copyright (c) 1993, Strategic Solutions  
  6. ;                                      
  7. ;                             _______
  8. ;                        ____|__     |                (R)
  9. ;                     --|       |    |-------------------
  10. ;                       |   ____|__  |  Association of
  11. ;                       |  |       |_|  Shareware
  12. ;                       |__|   o   |    Professionals
  13. ;                     -----|   |   |---------------------
  14. ;                          |___|___|    MEMBER
  15. ;    
  16. ;=========================================================================
  17. ;
  18. ;   To install Crosswords Deluxe
  19. ;  
  20. ;          1) Start windows 
  21. ;          2) From the Program manager Select FILE\RUN
  22. ;          3) Run the program INSTALL.EXE in this directory\disk
  23. ;          4) Answer the questions asked by the install program
  24. ;------------------------------------------------------------------------
  25. ;
  26. ;   Install script for Crosswords deluxe
  27. ;
  28. ;   Edward E. Dellow  4/25/93
  29. ;
  30. ;   Copyright (c) Strategic Solutions
  31. ;
  32. ;------------------------------------------------------------------------
  33.  
  34. Title Install Crosswords Deluxe Evaluation
  35. Icon1 cweval.exe
  36. Icon2 cweval.exe
  37.  
  38. ; Default paths
  39.  
  40. Set INSTPATH=c:\ss\cwdeluxe
  41. Set WINPATH=c:\windows
  42.  
  43. ; Get the path where the product should be put
  44.  
  45. cls
  46. Echo
  47. Echo Cross Words Deluxe Version 1.0
  48. Echo Evaluation version
  49. Echo Installation
  50. Echo Copyright(c) 1993 Strategic Solutions
  51. Echo Written by Edward E. Dellow
  52.  
  53. Status You are about to install Cross Words Deluxe on you Hard drive. Enter the pathname where you would like it to be installed.
  54.  
  55. :GetPath
  56. Ask      INSTPATH
  57. FullPath INSTPATH=%%INSTPATH%%
  58. OnError MkDir_Error
  59. Mkdir %%INSTPATH%%
  60.  
  61. ; Get the path where windows can be found
  62.  
  63. :GetWinPath
  64. OnError Install_Error
  65. Status Enter the path name containing Microsoft Windows.
  66. Ask  WINPATH
  67.  
  68. OnError Install_Error
  69.  
  70. ;--------------------
  71. ; Begin installation
  72. ;--------------------
  73.  
  74. Cls
  75. Echo Installing Cross Words Deluxe.
  76. Echo Install Dir = '%%INSTPATH%%'
  77. Echo Windows Dir = '%%WINPATH%%'
  78. Echo
  79. Echo One moment please...
  80.  
  81. AddGroup Stategic Solutions
  82. Copy cweval.exe    %%INSTPATH%%
  83. Copy cweval.pbk    %%INSTPATH%%   
  84. Copy cwdeluxe.hlp  %%INSTPATH%%
  85. Copy cwdeluxe.txt  %%INSTPATH%%
  86. Copy orderfrm.txt  %%INSTPATH%%
  87. Copy bwcc.dll      %%WINPATH%%\system
  88. ReplaceItem        %%INSTPATH%%\cweval.exe,Cross Words Deluxe
  89. Status 
  90. Message Installation complete!
  91. ShowGroup Stategic Solutions,3
  92. Goto End
  93.  
  94. :MkDir_Error
  95. Status The path specified is invalid! Please enter a valid Directory for installation.
  96. Goto GetPath
  97.  
  98. :Install_Error
  99. cls
  100. Echo
  101. Echo An error has occurred.  
  102. Echo Please read the error message below.
  103. Pause
  104.  
  105. :End
  106.