home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
USCX
/
SAMPLE05.ZIP
/
VW128FIX.BAT
< prev
next >
Wrap
DOS Batch File
|
1983-07-24
|
2KB
|
46 lines
rem This batch file will only work under DOS 2.0
echo off
cls
echo ╔══════════════════════════════════════════════════════════╗
echo ║ VW 128 FIX ║
echo ║ by David Whitman ║
echo ╠══════════════════════════════════════════════════════════╣
echo ║ ║
echo ║ Modifys the 128K version of Volkswriter 1.2 ║
echo ║ to skip the time consuming title page. ║
echo ║ ║
echo ║ This disk should contain the following files: ║
echo ║ ║
echo ║ VW128FIX.BAT (this file) ║
echo ║ VW128FIX.INS (instructions for DEBUG) ║
echo ║ DEBUG.COM (from your DOS disk) ║
echo ║ VW.EXE (Volkswriter program) ║
echo ║ ║
echo ╠══════════════════════════════════════════════════════════╣
echo ║ The copy of Volkswriter on this disk will be ║
echo ║ PERMANENTLY modified to eliminate the opening ║
echo ║ fireworks display. If you wish to abort this ║
echo ║ process at this time, press Control Break, then ║
echo ║ answer "Y" to the prompt. ║
echo ╚══════════════════════════════════════════════════════════╝
pause
if exist vw128fix.ins goto a
echo Missing file: VW128FIX.INS
goto abort
:a
if exist debug.com goto b
echo Missing file: DEBUG.COM
goto abort
:b
if exist vw.exe goto c
echo Missing file: VW.EXE
goto abort
:c
rem Everything looks ok, so do it...
rename vw.exe vw.bug
<vw128fix.ins debug vw.bug
rename vw.bug vw.exe
rem done!
echo ════════════════════MODIFICATION COMPLETED══════════════════
:abort