home *** CD-ROM | disk | FTP | other *** search
/ Wacky Windows Stuff... / WACKY.iso / toolbook / install.bat < prev    next >
DOS Batch File  |  1991-04-15  |  4KB  |  125 lines

  1. @ECHO OFF
  2. REM:This batch file and TBW.exe are (C)1990-Steve Shubitz-All rights reserved
  3. REM:ToolBook developers may license this install for a reasonable fee
  4. REM:Please call (619) 546-9309 for a quote * Demo Install
  5. break on
  6. verify on
  7. IF "%1" == "" GOTO UsageExit
  8. IF "%2" == "" GOTO UsageExit
  9. if not exist %2\win.ini goto NoWin
  10.  
  11. CLS
  12. echo 
  13. echo 
  14. echo                  ** ToolBook and ClipBook Installation **
  15. echo                   Copyright (c) 1990, Published Perfection!
  16. echo                      Install ToolBook at %1              
  17. echo 
  18. echo    This install DOES NOT modify your config.sys or autoexec.bat files.
  19. echo    If ToolBook is already properly installed your win.ini is NOT modified
  20. echo    About 1.2 MB of free disk space is required for this install.
  21. echo    ----------------------- CTRL-BREAK TO CANCEL -------------------------
  22. echo 
  23. echo 
  24. PAUSE
  25.  
  26. IF EXIST %1\*.* GOTO Warn1
  27. md %1
  28. GOTO Setup1
  29.  
  30. :Warn1
  31. CLS
  32. ECHO                  ** ToolBook and ClipBook Installation **
  33. ECHO                   Copyright (c) 1990,  Published Perfection!
  34. ECHO               You requested installation of the software into %1 .
  35. echo 
  36. ECHO        This directory EXIST !
  37. echo 
  38. ECHO You will be asked to confirm any overwrites.
  39. echo 
  40. echo 
  41. echo 
  42. PAUSE
  43. GOTO Setup1
  44.  
  45. :Setup1
  46. CLS
  47. ECHO                  ** ToolBook and ClipBook Installation **
  48. ECHO                   Copyright (c) 1990,  Published Perfection!
  49. echo 
  50. ECHO Creating a backup copy of %2\WIN.INI (%2\win.pp)
  51. ECHO    COPY %2\WIN.INI to  %2\WIN.PP
  52. echo 
  53. copy %2\win.ini %2\win.pp
  54. IF EXIST %2\win.pp GOTO CopyOk
  55. GOTO CopyError
  56.  
  57. :CopyOk
  58. ECHO  
  59. ECHO Updating %2\WIN.INI 
  60. ECHO  
  61. tbw %2\win.pp %2\win.ini
  62. if ERRORLEVEL 0 goto OKDone
  63.  
  64. ECHO  
  65. ECHO Unable to modify win.ini
  66. ECHO Original %2\win.ini is saved as %2\win.pp
  67. copy %2\win.pp %2\win.ini
  68. ECHO  
  69. GOTO PromptExit
  70.  
  71. :OKDone
  72. echo 
  73. ECHO  Unpacking files and verifying archive...
  74. ECHO        
  75. pkunzip *.zip %1
  76. echo 
  77. ECHO Installation completed!
  78. ECHO Your software has been copied to %1
  79. ECHO Launch WINDOWS and double click on CLIPBOOK.tbk to start!
  80. GOTO PromptExit
  81.  
  82. :NoWin
  83. CLS
  84. ECHO                          
  85. ECHO ** Windows initialization file, %2\win.ini, NOT FOUND !!!
  86. ECHO                                        
  87. GOTO Usage
  88.  
  89. :CopyError
  90. CLS
  91. ECHO                          
  92. ECHO ** Could not copy Windows initialization file, %2\win.ini !!!
  93. ECHO ** Check disk space in %2
  94. ECHO                                        
  95. GOTO Usage
  96.  
  97. :UsageExit
  98. CLS
  99. ECHO                   ** ToolBook and ClipBook Installation **
  100.  
  101. :Usage
  102. ECHO Usage:   INSTALL TBOOKDIR WINDIR
  103. ECHO  
  104. ECHO Where:   TBOOKDIR is the directory where this
  105. ECHO          software is to be installed.                (eg: C:\TBOOK)
  106. ECHO  
  107. ECHO          WINDIR specifies the full pathname where
  108. ECHO          you installed Microsoft Windows 3.0         (eg: C:\WINDOWS)
  109. ECHO          The WIN.INI initialization file must exist
  110. ECHO          in this directory.
  111. ECHO  
  112. ECHO Example: INSTALL C:\TBOOK C:\WINDOWS
  113. ECHO  
  114. ECHO Notes:   A space is required between TBOOKDIR and WINDIR.
  115. ECHO          You need about 1.2 MB of free disk space in your TBOOK directory.
  116. ECHO          You must modify your path statement ONLY if you decide to store
  117. ECHO          CLIPBOOK in another directory after this installation. Your
  118. ECHO          path statement must point to the directory where TBOOK.EXE and
  119. ECHO          the associated .DLL files are stored on your system. Your
  120. ECHO          autoexec.bat and config.sys are NOT modified. This install will
  121. ECHO          NOT modify your win.ini if ToolBook is properly installed. A
  122. ECHO          backup copy of your win.ini called win.pp will be made before
  123. ECHO          any modifications are performed. CTRL-BREAK TO CANCEL.
  124. :PromptExit
  125.