home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t380 / 1.ddi / STACDOS5.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-09-24  |  42.0 KB  |  1,239 lines

  1. echo off 
  2. rem =========================================================================
  3. rem STACDOS5.BAT - Version 1.02, MS-DOS 5 Upgrade Batch File
  4. rem =========================================================================
  5. rem History:
  6. rem    9-12-91 Added checking for read-only COMMAND.COM in root directory
  7. rem            and DOS directory on boot drive and Stacker drive.
  8. rem    9-11-91 Changed verbage from 'Stacker volume' and 'compressed
  9. rem            drive' to 'Stacker drive'.
  10. rem    7-15-91 Added checking for 'DRIVER.SYS'.
  11. rem
  12. rem Purpose:  To ease the upgrade to MS DOS 5 for users meeting the following
  13. rem    criteria: there is less than 2.8 MB of space available on the
  14. rem    uncompressed drive.
  15. rem 
  16. rem Assumptions: 
  17. rem    The batch file MUST be run from the 'STACKER' directory on the 
  18. rem    Stacker drive.
  19. rem 
  20. rem Parameters (all required):
  21. rem 
  22. rem    %1 = on PASS 1: drive letter to install from (A, B, A:, or B:)
  23. rem       = on PASS 2: drive & directory name of DOS dir on boot drive
  24. rem    %2 = drive letter for Stacker drive with DOS directory (eg., C:)
  25. rem    %3 = DOS directory on Stacker drive (eg., \DOS)
  26. rem 
  27. rem Environment variables used:
  28. rem 
  29. rem   _b = drive letter of real boot drive (uncompressed), with ':' 
  30. rem          character appended
  31. rem   _d = user's DOS directory name; if there's no leading '\' on it,
  32. rem          one is prepended before the variable is used
  33. rem  _hd = hard drive letter for DOS directory (must be a Stacker drive)
  34. rem  _fd = floppy drive letter for drive DOS 5 is installed from 
  35. rem  _fs = floppy diskette size; _f=3 means 3.5", _f=5 means 5.25"
  36. rem
  37. rem Troubleshooting:
  38. rem
  39. rem The batch file creates a file called STACDOS5.LOG in the root directory 
  40. rem of the uncompressed drive.  Echo statements are used to append to the 
  41. rem file so that tech support can know how far the process got if it fails.
  42. rem 
  43. rem =========================================================================
  44. rem Flow of processing...
  45. rem 
  46. rem   Execute pass 2 if STACDOS5.LOG is present in the root dir of the
  47. rem   current drive.
  48. rem
  49. rem PASS 1:
  50. rem   Verify that there are three parameters.
  51. rem   Check for sufficient environment space.
  52. rem   Check for SATTRIB, SWAPMAP and DRVTYPE in 'STACKER' directory.
  53. rem   Determine real boot drive using use SWAPMAP.
  54. rem   Verify the drive letter (%1).
  55. rem   Verify the DOS directory name specified (%2).
  56. rem   Verify that the drive for DOS directory is on a Stacker drive (%3).
  57. rem 
  58. rem   Display the welcome screen with user instructions.
  59. rem   Save CONFIG.SYS and AUTOEXEC.BAT for later restoration.
  60. rem   Prompt for diskette containing EXPAND.EXE and copy it.
  61. rem   Prompt for distribution diskettes and expand files into DOS directory.
  62. rem   Delete .COM versions of old DOS files that are .EXE in DOS 5.
  63. rem   Update driver files in root, DOS, and Windows directories as needed.
  64. rem   Update COMMAND.COM and system files on Stacker drive.
  65. rem   Create correct DOSSHELL based on video type.
  66. rem   Prepare for pass 2 by copying ourselves to the boot disk.
  67. rem   Transfer control to Setup /M.
  68. rem 
  69. rem PASS 2:
  70. rem   Restore config.sys and autoexec.bat from 'STACKER' directory. 
  71. rem   Cleanup after SETUP /M (copy files to dos directory).
  72. rem   Instruct the user to reboot and exit.
  73. rem =========================================================================
  74.  
  75. rem If STACDOS5.LOG is in the current directory, then it's time for PASS 2.
  76. rem 
  77. if exist stacdos5.log goto pass2
  78.  
  79. rem PASS 1 Process.
  80. rem 
  81. :pass1
  82. rem Verify that there are three parameters.
  83. if %1qq==qq goto noparms
  84. if %2qq==qq goto noparm2
  85. if %3qq==qq goto noparm3
  86.  
  87. rem Check for sufficient environment space.  This check will fail for one
  88. rem of 2 reasons: 1) not enough environment, and 2) DOS version prior to
  89. rem 3.1.  Those DOS versions don't handle environment vars in batch files.
  90. :chkenv
  91. set _b=1234567890123456789012345
  92. if %_b%==1234567890123456789012345 goto chkenv_e
  93. goto nospace
  94. :chkenv_e
  95. set _b=
  96.  
  97. rem Check to see that we're in the 'STACKER' directory.  We need to be here
  98. rem so we can use the SATTRIB, SWAPMAP, and DRVTYPE commands later on.
  99. :ckstkr
  100. if not exist sattrib.com goto notstkr1
  101. if not exist swapmap.com goto notstkr1
  102. if not exist drvtype.exe goto notstkr1
  103.  
  104. :chkswap
  105. rem Find out what the real boot drive is.
  106. swapmap c:
  107. IF errorlevel 26  goto noboot
  108. IF errorlevel 25  goto bootZ
  109. IF errorlevel 24  goto bootY
  110. IF errorlevel 23  goto bootX
  111. IF errorlevel 22  goto bootW
  112. IF errorlevel 21  goto bootV
  113. IF errorlevel 20  goto bootU
  114. IF errorlevel 19  goto bootT
  115. IF errorlevel 18  goto bootS
  116. IF errorlevel 17  goto bootR
  117. IF errorlevel 16  goto bootQ
  118. IF errorlevel 15  goto bootP
  119. IF errorlevel 14  goto bootO
  120. IF errorlevel 13  goto bootN
  121. IF errorlevel 12  goto bootM
  122. IF errorlevel 11  goto bootL
  123. IF errorlevel 10  goto bootK
  124. IF errorlevel  9  goto bootJ
  125. IF errorlevel  8  goto bootI
  126. IF errorlevel  7  goto bootH
  127. IF errorlevel  6  goto bootG
  128. IF errorlevel  5  goto bootF
  129. IF errorlevel  4  goto bootE
  130. IF errorlevel  3  goto bootD
  131. IF errorlevel  2  goto bootC
  132. goto noboot
  133.  
  134. :bootC
  135. set _b=C:
  136. Goto bootdon
  137.  
  138. :bootD
  139. set _b=D:
  140. goto bootdon
  141.  
  142. :bootE
  143. set _b=E:
  144. goto bootdon
  145.  
  146. :bootF
  147. set _b=F:
  148. goto bootdon
  149.  
  150. :bootG
  151. set _b=G:
  152. goto bootdon
  153.  
  154. :bootH
  155. set _b=H:
  156. goto bootdon
  157.  
  158. :bootI
  159. set _b=I:
  160. goto bootdon
  161.  
  162. :bootJ
  163. set _b=J:
  164. goto bootdon
  165.  
  166. :bootK
  167. set _b=K:
  168. goto bootdon
  169.  
  170. :bootL
  171. set _b=L:
  172. goto bootdon
  173.  
  174. :bootM
  175. set _b=M:
  176. goto bootdon
  177.  
  178. :bootN
  179. set _b=N:
  180. goto bootdon
  181.  
  182. :bootO
  183. set _b=O:
  184. goto bootdon
  185.  
  186. :bootP
  187. set _b=P:
  188. goto bootdon
  189.  
  190. :bootQ
  191. set _b=Q:
  192. goto bootdon
  193.  
  194. :bootR
  195. set _b=rR:
  196. goto bootdon
  197.  
  198. :bootS
  199. set _b=S:
  200. goto bootdon
  201.  
  202. :bootT
  203. set _b=T:
  204. goto bootdon
  205.  
  206. :bootU
  207. set _b=U:
  208. goto bootdon
  209.  
  210. :bootV
  211. set _b=V:
  212. goto bootdon
  213.  
  214. :bootW
  215. set _b=W:
  216. goto bootdon
  217.  
  218. :bootX
  219. set _b=X:
  220. goto bootdon
  221.  
  222. :bootY
  223. set _b=Y:
  224. goto bootdon
  225.  
  226. :bootZ
  227. set _b=Z:
  228. :bootdon
  229. echo Boot drive is %_b% >> %_b%\stacdos5.log
  230.  
  231. rem Check for presence and validity of the drive letter parameter.
  232. :chkdrv
  233. if %1==a: goto setdrv
  234. if %1==A: goto setdrv
  235. if %1==b: goto setdrv
  236. if %1==B: goto setdrv
  237. if %1==a  goto setdrv
  238. if %1==A  goto setdrv
  239. if %1==b  goto setdrv
  240. if %1==B  goto setdrv
  241. goto nodrive
  242.  
  243. rem Set drive letter variable.
  244. :setdrv
  245. if %1==a: set _fd=A:
  246. if %1==A: set _fd=A:
  247. if %1==b: set _fd=B:
  248. if %1==B: set _fd=B:
  249. if %1==a  set _fd=A:
  250. if %1==A  set _fd=A:
  251. if %1==b  set _fd=B:
  252. if %1==B  set _fd=B:
  253.  
  254. rem Make sure the drive for the DOS directory is a Stacker drive.
  255. rem Append a ':' to it, if it helps.
  256. cls
  257. set _hd=%2
  258. set _d=%3
  259. drvtype %_hd%
  260. if errorlevel 3 goto notstkr2
  261. if errorlevel 2 goto chkdir
  262. goto notstkr2
  263.  
  264. :chkdir
  265. if exist %_hd%%_d%\chkdsk.com goto welcome
  266. if not exist %_hd%:%_d%\chkdsk.com goto direrr1
  267. set _hd=%_hd%:
  268.  
  269. rem We're done error checking, let's tell them why we're here.  This is
  270. rem the normal opening screen for the target audience.
  271. :welcome
  272. cls
  273. echo .
  274. echo          Welcome to the MS-DOS 5 Upgrade for Stacker users.
  275. echo          ==================================================
  276. echo .
  277. echo This process will allow you to upgrade your system to MS-DOS 5.  During
  278. echo this process you will be prompted to insert each of your MS-DOS 5
  279. echo Upgrade diskettes.  All of the DOS command files and drivers on your
  280. echo system will be updated.
  281. echo .
  282. echo This process will take approximately 20 minutes.
  283. echo .
  284. echo You will need at least 3 MB of disk space on your Stacker drive.
  285. echo .
  286. echo You will also need at least 650 KB of disk space on your uncompressed
  287. echo boot drive.
  288. echo .
  289. echo ********
  290. echo WARNING: IF YOU PERFORM YOUR MS-DOS 5 UPGRADE USING THIS PROCEDURE, 
  291. echo ******** YOU WILL NOT BE ABLE TO USE THE MS-DOS 5 UNINSTALL FEATURE
  292. echo          TO RETURN TO YOUR OLD DOS VERSION.
  293. echo .
  294. echo          IF YOU WISH TO EXIT, PRESS CTRL-C.
  295. echo . 
  296. pause
  297. dir %_b% /w
  298. echo                    --------------------
  299. echo                             ^
  300. echo                             :
  301. echo                             :
  302. echo                             :
  303. echo If the number displayed above as "bytes free" is less than 650,000, 
  304. echo be sure to do the following:
  305. echo .
  306. echo   1. Press Ctrl-C to exit this process.
  307. echo .
  308. echo   2. Make at least 650 KB available on drive %_b%.  You can do this by
  309. echo      deleting unnecessary files or backing up files to diskettes.
  310. echo .
  311. echo   3. Re-run this batch file.
  312. echo .
  313. echo If there is sufficient space available, you may continue this process.
  314. echo .
  315. pause
  316. cls
  317. echo .
  318. echo We will now display the amount of space available on your Stacker 
  319. echo drive.
  320. echo .
  321. echo If you wish to exit, press Ctrl-C.
  322. echo .
  323. pause
  324. dir %_hd%%_d% /w
  325. echo                    --------------------
  326. echo                             ^
  327. echo                             :
  328. echo                             :
  329. echo                             :
  330. echo .
  331. echo If the number displayed above as "bytes free" is less than 3,000,000,
  332. echo be sure to do the following:
  333. echo .
  334. echo   1. Press Ctrl-C to exit this process.
  335. echo .
  336. echo   2. Make at least 3 MB available on the Stacker drive containing the
  337. echo      %_hd%%_d% directory.  You can do this by deleting unnecessary files 
  338. echo      or by backing up files to diskettes.
  339. echo .
  340. echo   3. Re-run this batch file.
  341. echo .
  342. echo If there is sufficient space available, you may continue this process.
  343. echo .
  344. pause
  345.  
  346. rem At this point we're ready to get started with the process.
  347. echo STACDOS5.BAT start. > %_b%\stacdos5.log
  348. rem Save config.sys and autoexec.bat for subsequent restoration.
  349. if exist %_b%\config.sys copy %_b%\config.sys %_b%\config.$s$ > nul
  350. if exist %_b%\autoexec.bat copy %_b%\autoexec.bat %_b%\autoexec.$s$ > nul
  351.  
  352. rem Get the disk with EXPAND.EXE on it.
  353. cls
  354. :gtexpdsk
  355. echo .
  356. echo If you are using 5.25" diskettes, insert DISK 6.
  357. echo .
  358. echo If you are using 3.5"  diskettes, insert DISK 3.
  359. pause
  360. if exist %_fd%expand.exe goto cpyexpnd
  361. cls
  362. echo Error: This is the wrong disk, try again...(press Ctrl-C to exit)
  363. echo.
  364. echo This batch file is designed to assist you during installation of
  365. echo the Microsoft MS-DOS 5 Upgrade.  It does not support the IBM DOS 5.0
  366. echo Upgrade.  If you need assistance with the IBM DOS 5.0 Upgrade, please
  367. echo contact Stac Technical Support.
  368. goto gtexpdsk
  369.  
  370. :cpyexpnd
  371. echo Copying expand.exe to %_hd%%_d%...
  372. copy %_fd%expand.exe expand.exe > nul
  373. echo .
  374. rem Figure out which diskette format.
  375. rem _fs=3 means 3.5" diskettes; _fs=5 means 5.25" diskettes
  376. rem 
  377. set _fs=3
  378. if exist %_fd%4201.cp_ goto endwhfmt
  379. set _fs=5
  380. :endwhfmt
  381.  
  382. rem Based on disk format, start prompting for the distribution diskettes.
  383. if %_fs%==3 goto getdsk31
  384. if %_fs%==5 goto getdsk51
  385. rem Copy files from 3.5" diskettes.
  386.  
  387. :getdsk31
  388. echo Insert DISK 1 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  389. echo Insert DISK 1 of your MS-DOS 5 Upgrade in drive %_fd%
  390. pause
  391. if exist %_fd%command.co_ goto copyd31
  392. cls
  393. echo Error: This doesn't look like DISK 1, try again...(press Ctrl-C to exit)
  394. echo .
  395. goto getdsk31
  396.  
  397. :copyd31
  398. echo Expanding contents of DISK 1 to %_hd%%_d%...
  399. echo .
  400. copy %_fd%autoexec.bat %_hd%%_d%\autoexec.bat > nul
  401. copy %_fd%io.sy_ %_hd%%_d%\io.sy_ > nul
  402. copy %_fd%msdos.sy_ %_hd%%_d%\msdos.sy_ > nul
  403. sattrib -r -s -h %_hd%%_d%\command.com
  404. expand %_fd%command.co_ %_hd%%_d%\command.com
  405. expand %_fd%ega.sy_ %_hd%%_d%\ega.sys
  406. expand %_fd%format.co_ %_hd%%_d%\format.com
  407. copy %_fd%hdbkup.exe %_hd%%_d%\hdbkup.exe > nul
  408. copy %_fd%setup.ini %_hd%%_d%\setup.ini > nul
  409. copy %_fd%setup.exe %_hd%%_d%\setup.exe > nul
  410. expand %_fd%uninstal.ex_ %_hd%%_d%\uninstal.exe
  411. copy %_fd%readme.1st %_hd%%_d%\readme.1st > nul
  412. expand %_fd%country.sy_ %_hd%%_d%\country.sys
  413. expand %_fd%display.sy_ %_hd%%_d%\display.sys
  414. expand %_fd%ega.cp_ %_hd%%_d%\ega.cpi
  415. expand %_fd%himem.sy_ %_hd%%_d%\himem.sys
  416. expand %_fd%keyb.co_ %_hd%%_d%\keyb.com
  417. expand %_fd%keyboard.sy_ %_hd%%_d%\keyboard.sys
  418. expand %_fd%mode.co_ %_hd%%_d%\mode.com
  419. expand %_fd%nlsfunc.ex_ %_hd%%_d%\nlsfunc.exe
  420. expand %_fd%setver.ex_ %_hd%%_d%\setver.exe
  421. expand %_fd%ansi.sy_ %_hd%%_d%\ansi.sys
  422. expand %_fd%debug.ex_ %_hd%%_d%\debug.exe
  423. expand %_fd%doskey.co_ %_hd%%_d%\doskey.com
  424. expand %_fd%edlin.ex_ %_hd%%_d%\edlin.exe
  425. expand %_fd%emm386.ex_ %_hd%%_d%\emm386.exe
  426. expand %_fd%fastopen.ex_ %_hd%%_d%\fastopen.exe
  427. expand %_fd%fdisk.ex_ %_hd%%_d%\fdisk.exe
  428. expand %_fd%mem.ex_ %_hd%%_d%\mem.exe
  429. expand %_fd%mirror.co_ %_hd%%_d%\mirror.com
  430. expand %_fd%ramdrive.sy_ %_hd%%_d%\ramdrive.sys
  431. expand %_fd%share.ex_ %_hd%%_d%\share.exe
  432. expand %_fd%smartdrv.sy_ %_hd%%_d%\smartdrv.sys
  433. expand %_fd%sys.co_ %_hd%%_d%\sys.com
  434. expand %_fd%undelete.ex_ %_hd%%_d%\undelete.exe
  435. copy %_fd%unformat.com %_hd%%_d%\unformat.com > nul
  436. expand %_fd%xcopy.ex_ %_hd%%_d%\xcopy.exe
  437. expand %_fd%cga.vi_ %_hd%%_d%\cga.vid
  438.  
  439. :getdsk32
  440. echo Insert DISK 2 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  441. echo Insert DISK 2 of your MS-DOS 5 Upgrade in drive %_fd%
  442. pause
  443. if exist %_fd%cga.gr_ goto copyd32
  444. cls
  445. echo Error: This doesn't look like DISK 2, try again...(press Ctrl-C to exit)
  446. echo .
  447. goto getdsk32
  448.  
  449. :copyd32
  450. echo Expanding contents of DISK 2 to %_hd%%_d%...
  451. echo .
  452. expand %_fd%cga.gr_ %_hd%%_d%\cga.grb
  453. expand %_fd%cga.in_ %_hd%%_d%\cga.ini
  454. expand %_fd%dosshell.co_ %_hd%%_d%\dosshell.com
  455. expand %_fd%dosshell.ex_ %_hd%%_d%\dosshell.exe
  456. expand %_fd%dosswap.ex_ %_hd%%_d%\dosswap.exe
  457. expand %_fd%ega.gr_ %_hd%%_d%\ega.grb
  458. expand %_fd%ega.in_ %_hd%%_d%\ega.ini
  459. expand %_fd%ega.vi_ %_hd%%_d%\ega.vid
  460. expand %_fd%egamono.gr_ %_hd%%_d%\egamono.grb
  461. expand %_fd%herc.gr_ %_hd%%_d%\herc.grb
  462. expand %_fd%herc.vi_ %_hd%%_d%\herc.vid
  463. expand %_fd%mono.gr_ %_hd%%_d%\mono.grb
  464. expand %_fd%mono.in_ %_hd%%_d%\mono.ini
  465. copy %_fd%packing.lst %_hd%%_d%\packing.lst > nul
  466. expand %_fd%print.ex_ %_hd%%_d%\print.exe
  467. expand %_fd%vga.gr_ %_hd%%_d%\vga.grb
  468. expand %_fd%vga.vi_ %_hd%%_d%\vga.vid
  469. expand %_fd%vgamono.gr_ %_hd%%_d%\vgamono.grb
  470. expand %_fd%doshelp.hl_ %_hd%%_d%\doshelp.hlp
  471. expand %_fd%dosshell.hl_ %_hd%%_d%\dosshell.hlp
  472. copy %_fd%hdrstore.exe %_hd%%_d%\hdrstore.exe > nul
  473. expand %_fd%help.ex_ %_hd%%_d%\help.exe
  474. expand %_fd%recover.ex_ %_hd%%_d%\recover.exe
  475. expand %_fd%edit.hl_ %_hd%%_d%\edit.hlp
  476. expand %_fd%msherc.co_ %_hd%%_d%\msherc.com
  477. expand %_fd%qbasic.hl_ %_hd%%_d%\qbasic.hlp
  478. copy %_fd%edit.com %_hd%%_d%\edit.com > nul
  479. expand %_fd%qbasic.ex_ %_hd%%_d%\qbasic.exe
  480.  
  481. :getdsk33
  482. echo Insert DISK 3 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  483. echo Insert DISK 3 of your MS-DOS 5 Upgrade in drive %_fd%
  484. pause
  485. if exist %_fd%4201.cp_ goto copyd33
  486. cls
  487. echo Error: This doesn't look like DISK 3, try again...(press Ctrl-C to exit)
  488. echo .
  489. goto getdsk33
  490.  
  491. :copyd33
  492. echo Expanding contents of DISK 3 to %_hd%%_d%...
  493. echo .
  494. expand %_fd%4201.cp_ %_hd%%_d%\4201.cpi
  495. expand %_fd%4208.cp_ %_hd%%_d%\4208.cpi
  496. expand %_fd%5202.cp_ %_hd%%_d%\5202.cpi
  497. expand %_fd%append.ex_ %_hd%%_d%\append.exe
  498. expand %_fd%assign.co_ %_hd%%_d%\assign.com
  499. expand %_fd%attrib.ex_ %_hd%%_d%\attrib.exe
  500. expand %_fd%backup.ex_ %_hd%%_d%\backup.exe
  501. expand %_fd%chkdsk.ex_ %_hd%%_d%\chkdsk.exe
  502. expand %_fd%comp.ex_ %_hd%%_d%\comp.exe
  503. expand %_fd%diskcomp.co_ %_hd%%_d%\diskcomp.com
  504. expand %_fd%diskcopy.co_ %_hd%%_d%\diskcopy.com
  505. expand %_fd%driver.sy_ %_hd%%_d%\driver.sys
  506. expand %_fd%fc.ex_ %_hd%%_d%\fc.exe
  507. expand %_fd%find.ex_ %_hd%%_d%\find.exe
  508. expand %_fd%graftabl.co_ %_hd%%_d%\graftabl.com
  509. expand %_fd%graphics.co_ %_hd%%_d%\graphics.com
  510. expand %_fd%gorilla.ba_ %_hd%%_d%\gorilla.bas
  511. expand %_fd%label.ex_ %_hd%%_d%\label.exe
  512. expand %_fd%money.ba_ %_hd%%_d%\money.bas
  513. expand %_fd%more.co_ %_hd%%_d%\more.com
  514. expand %_fd%nibbles.ba_ %_hd%%_d%\nibbles.bas
  515. expand %_fd%remline.ba_ %_hd%%_d%\remline.bas
  516. expand %_fd%restore.ex_ %_hd%%_d%\restore.exe
  517. expand %_fd%sort.ex_ %_hd%%_d%\sort.exe
  518. expand %_fd%wina20.38_ %_hd%%_d%\wina20.386
  519. expand %_fd%exe2bin.ex_ %_hd%%_d%\exe2bin.exe
  520. expand %_fd%graphics.pr_ %_hd%%_d%\graphics.pro
  521. expand %_fd%join.ex_ %_hd%%_d%\join.exe
  522. expand %_fd%lcd.cp_ %_hd%%_d%\lcd.cpi
  523. expand %_fd%loadfix.co_ %_hd%%_d%\loadfix.com
  524. expand %_fd%printer.sy_ %_hd%%_d%\printer.sys
  525. copy %_fd%readme.txt %_hd%%_d%\readme.txt > nul
  526. expand %_fd%replace.ex_ %_hd%%_d%\replace.exe
  527. expand %_fd%subst.ex_ %_hd%%_d%\subst.exe
  528. expand %_fd%tree.co_ %_hd%%_d%\tree.com
  529. copy %_fd%appnotes.txt %_hd%%_d%\appnotes.txt > nul
  530. goto allok
  531.  
  532. rem Copy files from 5.25" diskettes.
  533. :getdsk51
  534. echo Insert DISK 1 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  535. echo Insert DISK 1 of your MS-DOS 5 Upgrade in drive %_fd%
  536. pause
  537. if exist %_fd%command.co_ goto copyd51
  538. cls
  539. echo Error: This doesn't look like DISK 1, try again...(press Ctrl-C to exit)
  540. echo .
  541. goto getdsk51
  542.  
  543. :copyd51
  544. echo Expanding contents of DISK 1 to %_hd%%_d%...
  545. echo .
  546. rem Upgrade 360KB Distribution Disk Layout
  547. copy %_fd%autoexec.bat %_hd%%_d%\autoexec.bat > nul
  548. copy %_fd%io.sy_ %_hd%%_d%\io.sy_ > nul
  549. copy %_fd%msdos.sy_ %_hd%%_d%\msdos.sy_ > nul
  550. sattrib -r -s -h %_hd%%_d%\command.com
  551. expand %_fd%command.co_ %_hd%%_d%\command.com
  552. expand %_fd%ega.sy_ %_hd%%_d%\ega.sys 
  553. expand %_fd%format.co_ %_hd%%_d%\format.com
  554. copy %_fd%hdbkup.exe %_hd%%_d%\hdbkup.exe > nul
  555. copy %_fd%setup.exe %_hd%%_d%\setup.exe > nul
  556. copy %_fd%setup.ini %_hd%%_d%\setup.ini > nul
  557. expand %_fd%uninstal.ex_ %_hd%%_d%\uninstal.exe > nul
  558. copy %_fd%readme.1st %_hd%%_d%\readme.1st > nul
  559.  
  560. :getdsk52
  561. echo Insert DISK 2 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  562. echo Insert DISK 2 of your MS-DOS 5 Upgrade in drive %_fd%
  563. pause
  564. if exist %_fd%country.sy_ goto copyd52
  565. cls
  566. echo Error: This doesn't look like DISK 2, try again...(press Ctrl-C to exit)
  567. echo .
  568. goto getdsk52
  569.  
  570. :copyd52
  571. echo Expanding contents of DISK 2 to %_hd%%_d%...
  572. echo .
  573. expand %_fd%country.sy_ %_hd%%_d%\country.sys
  574. expand %_fd%display.sy_ %_hd%%_d%\display.sys
  575. expand %_fd%ega.cp_ %_hd%%_d%\ega.cpi
  576. expand %_fd%himem.sy_ %_hd%%_d%\himem.sys
  577. expand %_fd%keyb.co_ %_hd%%_d%\keyb.com
  578. expand %_fd%keyboard.sy_ %_hd%%_d%\keyboard.sys
  579. expand %_fd%mode.co_ %_hd%%_d%\mode.com
  580. expand %_fd%nlsfunc.ex_ %_hd%%_d%\nlsfunc.exe
  581. expand %_fd%setver.ex_ %_hd%%_d%\setver.exe
  582. expand %_fd%ansi.sy_ %_hd%%_d%\ansi.sys
  583. expand %_fd%debug.ex_ %_hd%%_d%\debug.exe
  584. expand %_fd%doskey.co_ %_hd%%_d%\doskey.com
  585. expand %_fd%edlin.ex_ %_hd%%_d%\edlin.exe
  586. expand %_fd%emm386.ex_ %_hd%%_d%\emm386.exe
  587. expand %_fd%fastopen.ex_ %_hd%%_d%\fastopen.exe
  588. expand %_fd%fdisk.ex_ %_hd%%_d%\fdisk.exe
  589. expand %_fd%mem.ex_ %_hd%%_d%\mem.exe
  590. expand %_fd%mirror.co_ %_hd%%_d%\mirror.com
  591. expand %_fd%ramdrive.sy_ %_hd%%_d%\ramdrive.sys
  592. expand %_fd%share.ex_ %_hd%%_d%\share.exe
  593. expand %_fd%smartdrv.sy_ %_hd%%_d%\smartdrv.sys
  594. expand %_fd%sys.co_ %_hd%%_d%\sys.com
  595. expand %_fd%undelete.ex_ %_hd%%_d%\undelete.exe
  596. copy %_fd%unformat.com %_hd%%_d%\unformat.com > nul
  597. expand %_fd%xcopy.ex_ %_hd%%_d%\xcopy.exe
  598. expand %_fd%cga.vi_ %_hd%%_d%\cga.vid
  599.  
  600. :getdsk53
  601. echo Insert DISK 3 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  602. echo Insert DISK 3 of your MS-DOS 5 Upgrade in drive %_fd%
  603. pause
  604. if exist %_fd%cga.gr_ goto copyd53
  605. cls
  606. echo Error: This doesn't look like DISK 3, try again...(press Ctrl-C to exit)
  607. echo .
  608. goto getdsk53
  609.  
  610. :copyd53
  611. echo Expanding contents of DISK 3 to %_hd%%_d%...
  612. echo .
  613. expand %_fd%cga.gr_ %_hd%%_d%\cga.grb
  614. expand %_fd%cga.in_ %_hd%%_d%\cga.ini
  615. expand %_fd%dosshell.co_ %_hd%%_d%\dosshell.com
  616. expand %_fd%dosshell.ex_ %_hd%%_d%\dosshell.exe
  617. expand %_fd%dosswap.ex_ %_hd%%_d%\dosswap.exe
  618. expand %_fd%ega.gr_ %_hd%%_d%\ega.grb
  619. expand %_fd%ega.in_ %_hd%%_d%\ega.ini
  620. expand %_fd%ega.vi_ %_hd%%_d%\ega.vid
  621. expand %_fd%egamono.gr_ %_hd%%_d%\egamono.grb
  622. expand %_fd%herc.gr_ %_hd%%_d%\herc.grb
  623. expand %_fd%herc.vi_ %_hd%%_d%\herc.vid
  624. expand %_fd%mono.gr_ %_hd%%_d%\mono.grb
  625. expand %_fd%mono.in_ %_hd%%_d%\mono.ini
  626. copy %_fd%packing.lst %_hd%%_d%\packing.lst > nul
  627. expand %_fd%print.ex_ %_hd%%_d%\print.exe
  628. expand %_fd%vga.gr_ %_hd%%_d%\vga.grb
  629. expand %_fd%vga.vi_ %_hd%%_d%\vga.vid
  630. expand %_fd%vgamono.gr_ %_hd%%_d%\vgamono.grb
  631. expand %_fd%doshelp.hl_ %_hd%%_d%\doshelp.hlp
  632. expand %_fd%dosshell.hl_ %_hd%%_d%\dosshell.hlp
  633. copy %_fd%hdrstore.exe %_hd%%_d%\hdrstore.exe > nul
  634. expand %_fd%help.ex_ %_hd%%_d%\help.exe
  635. expand %_fd%recover.ex_ %_hd%%_d%\recover.exe
  636.  
  637.  
  638. :getdsk54
  639. echo Insert DISK 4 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  640. echo Insert DISK 4 of your MS-DOS 5 Upgrade in drive %_fd%
  641. pause
  642. if exist %_fd%edit.hl_ goto copyd54
  643. cls
  644. echo Error: This doesn't look like DISK 4, try again...(press Ctrl-C to exit)
  645. echo .
  646. goto getdsk54
  647.  
  648. :copyd54
  649. echo Expanding contents of DISK 4 to %_hd%%_d%...
  650. echo .
  651. expand %_fd%edit.hl_ %_hd%%_d%\edit.hlp
  652. expand %_fd%msherc.co_ %_hd%%_d%\msherc.com
  653. expand %_fd%qbasic.hl_ %_hd%%_d%\qbasic.hlp
  654. copy %_fd%edit.com %_hd%%_d%\edit.com > nul
  655. expand %_fd%qbasic.ex_ %_hd%%_d%\qbasic.exe
  656.  
  657. :getdsk55
  658. echo Insert DISK 5 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  659. echo Insert DISK 5 of your MS-DOS 5 Upgrade in drive %_fd%
  660. pause
  661. if exist %_fd%4201.cp_ goto copyd55
  662. cls
  663. echo Error: This doesn't look like DISK 5, try again...(press Ctrl-C to exit)
  664. echo .
  665. goto getdsk55
  666.  
  667. :copyd55
  668. echo Expanding contents of DISK 5 to %_hd%%_d%...
  669. echo .
  670. expand %_fd%4201.cp_ %_hd%%_d%\4201.cpi
  671. expand %_fd%4208.cp_ %_hd%%_d%\4208.cpi
  672. expand %_fd%5202.cp_ %_hd%%_d%\5202.cpi
  673. expand %_fd%append.ex_ %_hd%%_d%\append.exe
  674. expand %_fd%assign.co_ %_hd%%_d%\assign.com
  675. expand %_fd%attrib.ex_ %_hd%%_d%\attrib.exe
  676. expand %_fd%backup.ex_ %_hd%%_d%\backup.exe
  677. expand %_fd%chkdsk.ex_ %_hd%%_d%\chkdsk.exe
  678. expand %_fd%comp.ex_ %_hd%%_d%\comp.exe
  679. expand %_fd%diskcomp.co_ %_hd%%_d%\diskcomp.com
  680. expand %_fd%diskcopy.co_ %_hd%%_d%\diskcopy.com
  681. expand %_fd%driver.sy_ %_hd%%_d%\driver.sys
  682. expand %_fd%fc.ex_ %_hd%%_d%\fc.exe
  683. expand %_fd%find.ex_ %_hd%%_d%\find.exe
  684. expand %_fd%graftabl.co_ %_hd%%_d%\graftabl.com
  685. expand %_fd%graphics.co_ %_hd%%_d%\graphics.com
  686. expand %_fd%gorilla.ba_ %_hd%%_d%\gorilla.bas
  687. expand %_fd%label.ex_ %_hd%%_d%\label.exe
  688. expand %_fd%money.ba_ %_hd%%_d%\money.bas
  689. expand %_fd%more.co_ %_hd%%_d%\more.com
  690. expand %_fd%nibbles.ba_ %_hd%%_d%\nibbles.bas
  691. expand %_fd%remline.ba_ %_hd%%_d%\remline.bas
  692. expand %_fd%restore.ex_ %_hd%%_d%\restore.exe
  693. expand %_fd%sort.ex_ %_hd%%_d%\sort.exe
  694. expand %_fd%wina20.38_ %_hd%%_d%\wina20.386
  695. expand %_fd%exe2bin.ex_ %_hd%%_d%\exe2bin.exe
  696. expand %_fd%graphics.pr_ %_hd%%_d%\graphics.pro
  697. expand %_fd%join.ex_ %_hd%%_d%\join.exe
  698. expand %_fd%lcd.cp_ %_hd%%_d%\lcd.cpi
  699. expand %_fd%loadfix.co_ %_hd%%_d%\loadfix.com
  700. expand %_fd%printer.sy_ %_hd%%_d%\printer.sys
  701. copy %_fd%readme.txt %_hd%%_d%\readme.txt > nul
  702. expand %_fd%replace.ex_ %_hd%%_d%\replace.exe
  703. expand %_fd%subst.ex_ %_hd%%_d%\subst.exe
  704. expand %_fd%tree.co_ %_hd%%_d%\tree.com
  705.  
  706. :getdsk56
  707. echo Insert DISK 6 of your MS-DOS 5 Upgrade in drive %_fd%. >> %_b%\stacdos5.log
  708. echo Insert DISK 6 of your MS-DOS 5 Upgrade in drive %_fd%
  709. pause
  710. if exist %_fd%appnotes.txt goto copyd56
  711. cls
  712. echo Error: This doesn't look like DISK 6, try again...(press Ctrl-C to exit)
  713. echo .
  714. goto getdsk56
  715.  
  716. :copyd56
  717. echo Expanding contents of DISK 6 to %_hd%%_d%...
  718. echo .
  719. copy %_fd%appnotes.txt %_hd%%_d%\appnotes.txt > nul
  720.  
  721. :allok
  722. rem Delete the .COM files in the DOS directory that are .EXE files in DOS 5.
  723. rem Do this on the Stacker drive.
  724. rem
  725. :comtoexe
  726. if exist %_hd%%_d%\backup.com del %_hd%%_d%\backup.com
  727. if exist %_hd%%_d%\chkdsk.com del %_hd%%_d%\chkdsk.com
  728. if exist %_hd%%_d%\comp.com del %_hd%%_d%\comp.com
  729. if exist %_hd%%_d%\debug.com del %_hd%%_d%\debug.com
  730. if exist %_hd%%_d%\edlin.com del %_hd%%_d%\edlin.com
  731. if exist %_hd%%_d%\fdisk.com del %_hd%%_d%\fdisk.com
  732. if exist %_hd%%_d%\help.com del %_hd%%_d%\help.com
  733. if exist %_hd%%_d%\label.com del %_hd%%_d%\label.com
  734. if exist %_hd%%_d%\print.com del %_hd%%_d%\print.com
  735. if exist %_hd%%_d%\recover.com del %_hd%%_d%\recover.com
  736. if exist %_hd%%_d%\restore.com del %_hd%%_d%\restore.com
  737.  
  738. rem Do the same for the boot drive.
  739. if exist %_b%%_d%\backup.com del %_b%%_d%\backup.com
  740. if exist %_b%%_d%\chkdsk.com del %_b%%_d%\chkdsk.com
  741. if exist %_b%%_d%\comp.com del %_b%%_d%\comp.com
  742. if exist %_b%%_d%\debug.com del %_b%%_d%\debug.com
  743. copy %_hd%%_d%\edlin.exe %_b%\edlin.exe
  744. if exist %_b%%_d%\edlin.com del %_b%%_d%\edlin.com
  745. if exist %_b%%_d%\fdisk.com del %_b%%_d%\fdisk.com
  746. if exist %_b%%_d%\help.com del %_b%%_d%\help.com
  747. if exist %_b%%_d%\label.com del %_b%%_d%\label.com
  748. if exist %_b%%_d%\print.com del %_b%%_d%\print.com
  749. if exist %_b%%_d%\recover.com del %_b%%_d%\recover.com
  750. if exist %_b%%_d%\restore.com del %_b%%_d%\restore.com
  751. :endctoe
  752. echo .COM files which are now .EXE have been deleted. >> %_b%\stacdos5.log
  753.  
  754. rem Update the following files on Drive C: and the uncompressed drive:
  755. rem 
  756. rem   HIMEM.SYS, SMARTDRV.SYS, RAMDRIVE.SYS, COUNTRY.SYS, ANSI.SYS,
  757. rem   DRIVER.SYS  
  758. rem   Also copy WINA20.386 to root directory of Stacker and boot drives.
  759. rem
  760. rem   Copy them from the DOS directory to the appropriate destinations.
  761. rem
  762.  
  763. :updsys
  764. rem Check for a 'STACKER' directory on the user's boot drive.
  765. rem If it doesn't exist, create it.
  766. rem 
  767. copy %_hd%%_d%\command.com %_b%\stacker\command.com > nul
  768. if exist %_b%\stacker\command.com goto dofiles
  769. mkdir %_b%\stacker > nul
  770. copy %_hd%%_d%\command.com %_b%\stacker\command.com > nul
  771. if not exist %_b%\stacker\command.com goto nostroot
  772.  
  773. :dofiles
  774. del %_b%\stacker\command.com > nul
  775.  
  776. rem HIMEM.SYS - check root, DOS & Windows directories
  777. if exist \himem.sys copy %_hd%%_d%\himem.sys \himem.sys > nul
  778. if exist \windows\himem.sys copy %_hd%%_d%\himem.sys \windows\himem.sys > nul
  779. rem 
  780. if exist %_b%\himem.sys copy %_hd%%_d%\himem.sys %_b%\stacker\himem.sys > nul
  781. if exist %_b%%_d%\himem.sys copy %_hd%%_d%\himem.sys %_b%\stacker\himem.sys > nul
  782. if exist %_b%\windows\himem.sys copy %_hd%%_d%\himem.sys %_b%\stacker\himem.sys > nul
  783. if exist %_b%\stacker\himem.sys echo HIMEM.SYS updated. >> %_b%\stacdos5.log
  784.  
  785. rem SMARTDRV.SYS - check root, DOS & Windows directories
  786. if exist \smartdrv.sys copy %_hd%%_d%\smartdrv.sys \smartdrv.sys > nul
  787. if exist \windows\smartdrv.sys copy %_hd%%_d%\smartdrv.sys \windows\smartdrv.sys > nul
  788. rem 
  789. if exist %_b%%_d%\smartdrv.sys copy %_hd%%_d%\smartdrv.sys %_b%\stacker\smartdrv.sys > nul
  790. if exist %_b%\windows\smartdrv.sys copy %_hd%%_d%\smartdrv.sys %_b%\stacker\smartdrv.sys > nul
  791. if exist %_b%\stacker\smartdrv.sys echo SMARTDRV.SYS updated. >> %_b%\stacdos5.log
  792.  
  793. rem RAMDRIVE.SYS - check root, DOS & Windows directories
  794. if exist \ramdrive.sys copy %_hd%%_d%\ramdrive.sys \ramdrive.sys > nul
  795. if exist \windows\ramdrive.sys copy %_hd%%_d%\ramdrive.sys \windows\ramdrive.sys > nul
  796. if exist %_b%\ramdrive.sys copy %_hd%%_d%\ramdrive.sys %_b%\stacker\ramdrive.sys > nul
  797. if exist %_b%%_d%\ramdrive.sys copy %_hd%%_d%\ramdrive.sys %_b%\stacker\ramdrive.sys > nul
  798. if exist %_b%\windows\ramdrive.sys copy %_hd%%_d%\ramdrive.sys %_b%\stacker\ramdrive.sys > nul
  799. if exist %_b%\stacker\ramdrive.sys echo RAMDRIVE.SYS updated. >> %_b%\stacdos5.log
  800.  
  801. rem COUNTRY.SYS - check root & DOS directories
  802. if exist \country.sys copy %_hd%%_d%\country.sys \country.sys > nul
  803. if exist %_b%\country.sys copy %_hd%%_d%\country.sys %_b%\stacker\country.sys > nul
  804. if exist %_b%%_d%\country.sys copy %_hd%%_d%\country.sys %_b%\stacker\country.sys > nul
  805. if exist %_b%\stacker\country.sys echo COUNTRY.SYS updated. >> %_b%\stacdos5.log
  806.  
  807. rem ANSI.SYS - check root & DOS directories
  808. if exist \ansi.sys copy %_hd%%_d%\ansi.sys \ansi.sys > nul
  809. if exist %_b%\ansi.sys copy %_hd%%_d%\ansi.sys %_b%\stacker\ansi.sys > nul
  810. if exist %_b%%_d%\ansi.sys copy %_hd%%_d%\ansi.sys %_b%\stacker\ansi.sys > nul
  811. if exist %_b%\stacker\ANSI.sys echo ANSI.SYS updated. >> %_b%\stacdos5.log
  812.  
  813. rem DRIVER.SYS - check root & DOS directories
  814. if exist \driver.sys copy %_hd%%_d%\driver.sys \driver.sys > nul
  815. if exist %_b%\driver.sys copy %_hd%%_d%\driver.sys %_b%\stacker\driver.sys > nul
  816. if exist %_b%%_d%\driver.sys copy %_hd%%_d%\driver.sys %_b%\stacker\driver.sys > nul
  817. if exist %_b%\stacker\driver.sys echo DRIVER.SYS updated. >> %_b%\stacdos5.log
  818.  
  819. rem WINA20.386 - copy to root directory of Stacker and boot drives
  820. copy %_hd%%_d%\wina20.386 \wina20.386 > nul
  821. copy %_hd%%_d%\wina20.386 %_b%\wina20.386 > nul
  822. echo WINA20 copied to root of Stacker and boot drives. >> %_b%\stacdos5.log
  823.  
  824. rem Update COMMAND.COM in the root of the Stacker drive (the current drive).
  825. :upcmdcom
  826. echo Updating system files on Stacker drive...
  827. if exist \command.com sattrib -h -r -s \command.com
  828. if exist \command.com copy %_hd%%_d%\command.com \command.com > nul
  829. echo COMMAND.COM updated on Stacker drive. >> %_b%\stacdos5.log
  830.  
  831. rem Update DOS hidden files on Stacker drive (the current drive).
  832. rem Handle both MS-DOS and IBM versions.
  833. if exist \msdos.sys goto st_doms
  834. if exist \ibmdos.com goto st_doibm
  835. goto st_put
  836.  
  837. :st_doibm
  838. rem Unhide and delete IBM DOS files on Stacker drive.
  839. sattrib -h -r -s \ibmbio.com
  840. sattrib -h -r -s \ibmdos.com
  841. del \ibmbio.com > nul
  842. del \ibmdos.com > nul
  843. goto st_put
  844.  
  845. :st_doms
  846. rem Unhide MS-DOS files on Stacker drive.
  847. sattrib -h -r -s \io.sys
  848. sattrib -h -r -s \msdos.sys
  849.  
  850. :st_put
  851. echo System files on drive C: unhidden. >> %_b%\stacdos5.log
  852. expand %_hd%%_d%\io.sy_ \io.sys > nul
  853. expand %_hd%%_d%\msdos.sy_ \msdos.sys > nul
  854. rem Cleanup the mess.
  855. del %_hd%%_d%\io.sy_ 
  856. del %_hd%%_d%\msdos.sy_ 
  857. rem Hide system files on Stacker drive.
  858. sattrib +h +r +s \io.sys
  859. sattrib +h +r +s \msdos.sys
  860. echo Hidden files on Stacker drive updated. >> %_b%\stacdos5.log
  861.  
  862. rem Determine video type and install appropriate DOSSHELL files.
  863. vidtype
  864. if errorlevel  7 goto MCA
  865. if errorlevel  6 goto HERC
  866. if errorlevel  5 goto VGAMONO
  867. if errorlevel  4 goto VGA
  868. if errorlevel  3 goto EGAMONO
  869. if errorlevel  2 goto EGA
  870. if errorlevel  1 goto CGA
  871.  
  872. :MONO
  873. echo MONO video. >> %_b%\stacdos5.log
  874. echo DOSSHELL set up for MONO.
  875. copy %_hd%%_d%\mono.ini %_hd%%_d%\dosshell.ini > nul 
  876. copy %_hd%%_d%\mono.grb %_hd%%_d%\dosshell.grb > nul
  877. goto ENDVID
  878.  
  879. :CGA
  880. echo CGA video. >> %_b%\stacdos5.log
  881. echo DOSSHELL set up for CGA.
  882. copy %_hd%%_d%\cga.vid %_hd%%_d%\dosshell.vid > nul
  883. copy %_hd%%_d%\cga.ini %_hd%%_d%\dosshell.ini > nul
  884. copy %_hd%%_d%\cga.grb %_hd%%_d%\dosshell.grb > nul
  885. goto ENDVID
  886.  
  887. :EGA
  888. echo EGA video. >> %_b%\stacdos5.log
  889. echo DOSSHELL set up for EGA.
  890. copy %_hd%%_d%\ega.vid %_hd%%_d%\dosshell.vid > nul
  891. copy %_hd%%_d%\ega.ini %_hd%%_d%\dosshell.ini > nul
  892. copy %_hd%%_d%\ega.grb %_hd%%_d%\dosshell.grb > nul
  893. goto ENDVID
  894.  
  895. :EGAMONO
  896. echo EGAMONO video. >> %_b%\stacdos5.log
  897. echo DOSSHELL set up for EGAMONO.
  898. copy %_hd%%_d%\ega.vid %_hd%%_d%\dosshell.vid > nul
  899. copy %_hd%%_d%\mono.ini %_hd%%_d%\dosshell.ini > nul
  900. copy %_hd%%_d%\egamono.grb %_hd%%_d%\dosshell.grb > nul
  901. goto ENDVID
  902.  
  903. :VGA
  904. echo VGA video. >> %_b%\stacdos5.log
  905. echo DOSSHELL set up for VGA.
  906. copy %_hd%%_d%\vga.vid %_hd%%_d%\dosshell.vid > nul
  907. copy %_hd%%_d%\ega.ini %_hd%%_d%\dosshell.ini > nul
  908. copy %_hd%%_d%\vga.grb %_hd%%_d%\dosshell.grb > nul
  909. goto ENDVID
  910.  
  911. :VGAMONO
  912. echo VGAMONO video. >> %_b%\stacdos5.log
  913. echo DOSSHELL set up for VGAMONO.
  914. copy %_hd%%_d%\vga.vid %_hd%%_d%\dosshell.vid > nul
  915. copy %_hd%%_d%\mono.ini %_hd%%_d%\dosshell.ini > nul
  916. copy %_hd%%_d%\vgamono.grb %_hd%%_d%\dosshell.grb > nul
  917. goto ENDVID
  918.  
  919. :HERC
  920. echo HERC video. >> %_b%\stacdos5.log
  921. echo DOSSHELL set up for HERC.
  922. copy %_hd%%_d%\herc.vid %_hd%%_d%\dosshell.vid > nul
  923. copy %_hd%%_d%\mono.ini %_hd%%_d%\dosshell.ini > nul
  924. copy %_hd%%_d%\herc.grb %_hd%%_d%\dosshell.grb > nul
  925. goto ENDVID
  926.  
  927. :MCA
  928. echo MCA video. >> %_b%\stacdos5.log
  929. echo DOSSHELL set up for MCA.
  930. copy %_hd%%_d%\cga.vid %_hd%%_d%\dosshell.vid > nul
  931. copy %_hd%%_d%\cga.ini %_hd%%_d%\dosshell.ini > nul
  932. copy %_hd%%_d%\vga.grb %_hd%%_d%\dosshell.grb > nul
  933. :ENDVID
  934.  
  935. cls
  936. echo .
  937. echo MS-DOS 5 files copied successfully.
  938. echo .
  939. echo You will now enter the MS-DOS 5 SETUP program which will install 
  940. echo the remaining files needed to complete your upgrade to MS-DOS 5.
  941. echo Note that this process will perform a Minimal Installation since
  942. echo we've already copied the files from the MS-DOS 5 Upgrade diskettes.
  943. echo .
  944. echo You will need one or two blank diskettes for this process.  They do
  945. echo not need to be formatted.
  946. echo .
  947. echo  1. The MS-DOS 5 SETUP program will ask you to verify your system
  948. echo     configuration, including the "DOS Path".  
  949. echo .
  950. echo        *** Be sure to accept the default setting of %_b%\DOS. ***
  951. echo .
  952. echo  2. Once you've completed the SETUP process, your system will reboot.
  953. echo     After rebooting you MUST type the following command at the C
  954. echo     prompt to complete the upgrade process.
  955. echo .
  956. echo                           STAC5
  957. echo .
  958. pause
  959. cls
  960. echo .
  961. echo                        **** REMINDER ****
  962. echo .
  963. echo SETUP will create UNINSTALL diskettes, but you will not be able to use
  964. echo the UNINSTALL feature of MS-DOS 5.
  965. echo .
  966. echo The MS-DOS 5 SETUP program will ask you to verify your system
  967. echo configuration, including the "DOS Path".  
  968. echo .
  969. echo     *** Be sure to accept the default setting of %_b%\DOS. ***
  970. echo .
  971. echo Once you've completed the SETUP process, your system will reboot and
  972. echo after rebooting you MUST type the following command at the C prompt to 
  973. echo complete the upgrade process.
  974. echo .
  975. echo                              STAC5
  976. echo .
  977. echo   ***************************************************************
  978. echo   *  **** WRITE THIS INSTRUCTION DOWN.  YOUR UPGRADE WILL ****  *
  979. echo   *  ****  NOT BE COMPLETE UNTIL THIS LAST STEP IS DONE.  ****  *
  980. echo   ***************************************************************
  981. echo .
  982. pause
  983.  
  984. :getdsk1
  985. echo Insert DISK 1 of your MS-DOS 5 Upgrade in drive %_fd%
  986. pause
  987. if exist %_fd%command.co_ goto setup_m
  988. cls
  989. echo Error: This doesn't look like DISK 1, try again...(press Ctrl-C to exit)
  990. echo .
  991. goto getdsk1
  992.  
  993. :setup_m
  994. echo Transferring control to Setup /M. >> %_b%\stacdos5.log
  995. echo Copy STACDOS5.BAT to boot drive for PASS 2.  >> %_b%\stacdos5.log
  996.  
  997. if exist %_b%\stacdos5.bat del %_b%\stacdos5.bat
  998. copy stacdos5.bat %_b%\stacdos5.bat > nul
  999.  
  1000. rem Remove attributes from command.com on boot drive and DOS directory 
  1001. rem on boot drive in case either is read-only
  1002. sattrib -r -s -h %_b%\command.com
  1003. sattrib -r -s -h %_b%%_d%\command.com
  1004.  
  1005. rem Create a 1-line batch file for use after Setup /M reboot.
  1006. echo STACDOS5 C:%_d% > %_b%\STAC5.BAT
  1007. echo Creating STAC5.BAT containing STACDOS5 C:%_d% >> %_b%\stacdos5.log
  1008. echo . >> %_b%\STAC5.BAT
  1009. echo PASS 1 completed. >> %_b%\stacdos5.log
  1010. echo . >> %_b%\stacdos5.log
  1011. %_fd%
  1012. setup /m
  1013. goto alldone
  1014.  
  1015. rem =========================================================================
  1016. rem PASS 2 Process.
  1017.  
  1018. :pass2
  1019. set _b=c:
  1020. rem 
  1021. rem Cleanup the root directory.
  1022. rem 
  1023. copy \config.$s$ \config.sys > nul
  1024. copy \autoexec.$s$ \autoexec.bat > nul
  1025. copy \config.$s$ \stacker\config.sys > nul
  1026. copy \autoexec.$s$ \stacker\autoexec.bat > nul
  1027. del \config.$s$ > nul
  1028. del \autoexec.$s$ > nul
  1029. echo CONFIG.SYS and AUTOEXEC.BAT restored. >> %_b%\stacdos5.log
  1030.  
  1031. set _d=%1
  1032. copy c:\command.com %_d% > nul
  1033. if exist %_d%\command.com goto copydos
  1034. goto direrr_1
  1035.  
  1036. rem Copy those DOS files which exist in the DOS & Windows directories.
  1037. rem Including himem.sys, smartdrv.sys, ramdrive.sys, ansi.sys, and country.sys
  1038. rem For each file, delete it after copying (if present).
  1039. :copydos
  1040.  
  1041. rem HIMEM.SYS - check root, DOS, & Windows directories
  1042. if exist \himem.sys copy \stacker\himem.sys \himem.sys > nul
  1043. if exist %_d%\himem.sys copy \stacker\himem.sys %_d%\himem.sys > nul
  1044. if exist \windows\himem.sys copy \stacker\himem.sys \windows\himem.sys > nul
  1045. if exist \stacker\himem.sys echo HIMEM.SYS updated. >> %_b%\stacdos5.log
  1046. if exist \stacker\himem.sys del \stacker\himem.sys > nul
  1047.  
  1048. rem SMARTDRV.SYS - check root, DOS & Windows directories
  1049. if exist \smartdrv.sys copy \stacker\smartdrv.sys \smartdrv.sys > nul
  1050. if exist %_d%\smartdrv.sys copy \stacker\smartdrv.sys %_d%\smartdrv.sys > nul
  1051. if exist \windows\smartdrv.sys copy \stacker\smartdrv.sys \windows\smartdrv.sys > nul
  1052. if exist \stacker\smartdrv.sys echo SMARTDRV.SYS updated. >> %_b%\stacdos5.log
  1053. if exist \stacker\smartdrv.sys del \stacker\smartdrv.sys > nul
  1054.  
  1055. rem RAMDRIVE.SYS - check root, DOS & Windows directories
  1056. if exist \ramdrive.sys copy \stacker\ramdrive.sys \ramdrive.sys > nul
  1057. if exist %_d%\ramdrive.sys copy \stacker\ramdrive.sys %_d%\ramdrive.sys > nul
  1058. if exist \windows\ramdrive.sys copy \stacker\ramdrive.sys \windows\ramdrive.sys > nul
  1059. if exist \stacker\ramdrive.sys echo RAMDRIVE.SYS updated. >> %_b%\stacdos5.log
  1060. if exist \stacker\ramdrive.sys del \stacker\ramdrive.sys > nul
  1061.  
  1062. rem COUNTRY.SYS - check root & DOS directories
  1063. if exist \country.sys copy \stacker\country.sys \country.sys > nul
  1064. if exist %_d%\country.sys copy \stacker\country.sys %_d%\country.sys > nul
  1065. if exist \stacker\country.sys echo COUNTRY.SYS updated. >> %_b%\stacdos5.log
  1066. if exist \stacker\country.sys del \stacker\country.sys > nul
  1067.  
  1068. rem ANSI.SYS - check root & DOS directories
  1069. if exist \ansi.sys copy \stacker\ansi.sys \ansi.sys > nul
  1070. if exist %_d%\ansi.sys copy \stacker\ansi.sys %_d%\ansi.sys > nul
  1071. if exist \stacker\ansi.sys echo ANSI.SYS updated. >> %_b%\stacdos5.log
  1072. if exist \stacker\ansi.sys del \stacker\ansi.sys > nul
  1073.  
  1074. rem DRIVER.SYS - check root & DOS directories
  1075. if exist \driver.sys copy \stacker\driver.sys \driver.sys > nul
  1076. if exist %_d%\driver.sys copy \stacker\driver.sys %_d%\driver.sys > nul
  1077. if exist \stacker\driver.sys echo DRIVER.SYS updated. >> %_b%\stacdos5.log
  1078. if exist \stacker\driver.sys del \stacker\driver.sys > nul
  1079.  
  1080. rem Instruct the user to reboot.
  1081. cls
  1082. echo .
  1083. echo Your MS-DOS 5 Upgrade is now complete.
  1084. echo .
  1085. echo Your CONFIG.SYS and AUTOEXEC.BAT files are the same as when you started
  1086. echo this process.  You will need to modify them if you wish to take advantage
  1087. echo of the exciting new features offered in MS-DOS 5.  You can find some
  1088. echo hints on this by looking at the files CONFIG.NEW and AUTOEXEC.NEW.  Be
  1089. echo sure you use the correct path names when adding any new commands to your
  1090. echo CONFIG.SYS file.
  1091. echo .
  1092. echo To access your Stacker drives...
  1093. echo .
  1094. echo              PRESS CTRL+ALT+DEL TO REBOOT YOUR SYSTEM NOW.
  1095. echo .
  1096. echo                   THANK YOU FOR CHOOSING STACKER.
  1097. echo .
  1098. echo PASS 2 completed. >> %_b%\stacdos5.log
  1099. echo STACDOS5.BAT complete. >> %_b%\stacdos5.log
  1100. copy %_b%\stacdos5.log %_b%\stacker > nul
  1101. del %_b%\stacdos5.log > nul
  1102. goto alldone
  1103.  
  1104. rem =========================================================================
  1105. rem Error Displays - All errors which exit after display are here.
  1106. rem =========================================================================
  1107.  
  1108. :noparm2
  1109. :noparm3
  1110. cls
  1111. echo .
  1112. echo ERROR: STACDOS5 requires three command-line parameters.
  1113. echo .
  1114. goto errexit
  1115.  
  1116. :direrr_1
  1117. cls
  1118. echo .
  1119. echo ERROR: Unable to verify the DOS directory.
  1120. echo .
  1121. goto errexit
  1122.  
  1123. :nospace
  1124. cls
  1125. echo .
  1126. echo ERROR: STACDOS5.BAT cannot run.  There are two possible reasons for this.
  1127. echo .
  1128. echo     1. There is not enough DOS environment space available.
  1129. echo        The update process requires very little space, however
  1130. echo        there is not enough available.  Please delete one or 
  1131. echo        more of your environment variables and run STACDOS5 again.
  1132. echo .
  1133. echo                              or
  1134. echo     2. You are running a version of DOS prior to DOS 3.1.  This
  1135. echo        batch file uses features available in DOS 3.1 and later.
  1136. echo .
  1137. echo        You are running the following DOS version:
  1138. echo .
  1139. ver
  1140. echo .
  1141. goto alldone
  1142.  
  1143. :notstkr1
  1144. cls
  1145. echo . 
  1146. echo ERROR: This batch file must be run from your Stacker drive, with
  1147. echo        the 'STACKER' directory as your current directory.  We're looking
  1148. echo        for the SATTRIB, SWAPMAP, and DRVTYPE Stacker utilities to
  1149. echo        verify this.  So, if you've deleted SATTRIB.COM, SWAPMAP.COM,
  1150. echo        or DRVTYPE.EXE from your 'STACKER' directory, you must copy them
  1151. echo        from the Stacker diskette to your 'STACKER' directory before you
  1152. echo        can complete this process.
  1153. echo .
  1154. echo Please copy this batch file, STACDOS5.BAT, to your 'STACKER' directory.  
  1155. echo Make the 'STACKER' directory on your Stacker drive the current 
  1156. echo directory and run this batch file, STACDOS5.
  1157. echo .
  1158. echo For example, if drive C: is a Stacker drive, your Stacker directory
  1159. echo is named 'STACKER', the DOS directory is named DOS, and you will be
  1160. echo installing from drive A:, type the following commands:
  1161. echo . 
  1162. echo                 COPY A:STACDOS5.BAT C:\STACKER 
  1163. echo                 C:
  1164. echo                 CD \STACKER
  1165. echo                 STACDOS5  A:  C:  \DOS
  1166. echo . 
  1167. goto alldone
  1168.  
  1169. :notstkr2
  1170. cls
  1171. echo .
  1172. echo ERROR: The drive letter you have specified for your DOS directory,
  1173. echo        %_hd% is not a Stacker drive.
  1174. echo .
  1175. goto errexit
  1176.  
  1177. :noboot
  1178. echo ERROR: Unable to determine boot drive.  
  1179. echo        Please contact Stac technical support.
  1180. goto alldone
  1181.  
  1182. :nodrive
  1183. cls
  1184. echo .
  1185. echo ERROR: You must provide the drive letter of the diskette drive
  1186. echo        that you will be installing your MS DOS 5 Upgrade from.  The
  1187. echo        drive letter must be A: or B:.
  1188. echo .
  1189. goto errexit
  1190.  
  1191. :direrr1
  1192. cls
  1193. echo .
  1194. echo ERROR: Unable to verify DOS directory.  We're looking for the
  1195. echo        CHKDSK command file, CHKDSK.COM, to verify this.
  1196. echo .
  1197. goto errexit
  1198.  
  1199. :nostroot
  1200. rem If this doesn't work, we can't operate.
  1201. cls
  1202. echo .
  1203. echo ERROR: Unable to locate or create 'STACKER' directory on your boot 
  1204. echo        drive, drive %_b%.
  1205. echo
  1206. echo Please make sure that a directory named 'STACKER' exists on your boot
  1207. echo drive.
  1208. goto alldone
  1209.  
  1210. :errexit
  1211. :noparms
  1212. echo Run STACDOS5.BAT from the 'STACKER' directory on your Stacker drive
  1213. echo with the following parameters:
  1214. echo .
  1215. echo                     STACDOS5  d1:  d2:  dosdir 
  1216. echo .
  1217. echo     d1:  the drive letter of the diskette drive you'll be installing
  1218. echo          your MS-DOS 5 Upgrade from.  This must be A: or B:.
  1219. echo .
  1220. echo     d2:  the drive letter containing the DOS directory.  This drive
  1221. echo          MUST be a Stacker drive.
  1222. echo .
  1223. echo  dosdir  the name of the DOS directory on your Stacker drive,
  1224. echo          (for example, \DOS).
  1225. echo .
  1226. echo For example, if you're installing MS-DOS 5 from drive A: and the DOS
  1227. echo directory on drive C:, a Stacker drive, is called DOS, type the
  1228. echo following:
  1229. echo .
  1230. echo                    STACDOS5  A:  C:  \DOS
  1231.  
  1232. :alldone
  1233. rem Be sure to keep the environment clean on exit.
  1234. set _b=
  1235. set _d=
  1236. set _fd=
  1237. set _fs=
  1238. set _h=
  1239.