COPY AND PASTE THE TEXT BELOW AND SAVE AS A BATCH FILE - MWRITE.BAT




prompt $e[31;47m
cls
@echo off
rem mwrite.bat v 1.0 (c) 1999 Matt Gilbert
rem this is a batch file by matt
prompt $e[31;47m
echo MWRITE v 1.0
echo This batch file written by Matt Gilbert (c) 1999
echo This will allow you to create a text file and password protect it
echo it's perfect for confidential writings you wish to keep for yourself
echo such as journals or the secret novel you're working on.
echo it utilizes the ms dos editor (edit.com) and pkzip and pkunzip
echo which must already be installed on your system and in your path statement
pause
cls
md c:\mwrite
pkunzip -s c:\mwrite\msaved c:\mwrite
edit c:\mwrite\nov1.txt
cls
echo leaving file worked on . . .
echo preparing to zip up and encrypt your file
pkzip -s c:\mwrite\msaved.zip c:\mwrite\nov1.txt 
del c:\mwrite\nov1.txt
cls
echo your file has been encrypted and saved
echo DO NOT FORGET YOUR PASSWORD - WRITE IT DOWN IN A SAFE PLACE
echo.
echo.
echo IF YOU FIND THIS FILE USEFUL, PLEASE FEEL FREE TO SEND ANY DONATIONS
echo KEGS OF BEER AND DANCING GIRLS TO:
echo.
echo Matt Gilbert
echo 5822 Cartagena
echo Houston TX 77035
echo.
echo and visit me at www.mattgilbert.iscool.net
echo email telemarketer@juno.com

prompt $e[0m$p$g
pause