Interesting....There appears to be more to this script than meets the eye. The "kill" command is usually used with Unix or Linux. DOS and/or Windows scripts are more likely to use the dreaded delete command. You will need your backup copy of autoexec.bat and config.sys, if you do not have one, you will need to rebuild them.

If I were you I would first verify that my c:\windows directory still exisits and all of the files are intact. Make a note of the files listed in the script. Hopefully, you know something about the DOS language and how it works. From the bootup a:\ DOS prompt type:

a:\ c:\ cd \windows
c:\windows dir /w or dir /p

Once you have verified that the files in your Windows directory were only killed and not deleted then you should do the same with your root directory. As you know your root directory is the first directory on your C drive.

c:\windows cd
c:\ dir /w or dir /p

Here you can verify that your autoexec.bat and config.sys files still exisit. You can view these files to screen by typing in the following command from the c:\ prompt:

type autoexec.bat
type config.sys

This will bring the file up on screen so that you can see what needs to be edited to bring them back to life or if they actually have been killed and need to be rebuilt. To edit the files in DOS mode you will need to type in the following commands from the c:\ prompt:

copy con autoexec.bat
<edit the file line by line>
^Z <to write and save the file>

copy con config.sys
<edit the file line by line>
^Z <to write and save the file>

You can do the same with the other files listed in the script. Once finished reboot your laptop, if it doesn't reboot you will more than likely have to edit the registry. If you do not know DOS and/or are not comfortable rebuilding these files or the registry, and you have no backups of them, then your only alternative is to re-install Windows 95. Unfortunately Windows95 needs to have the autoexec.bat and config.sys files in order to boot up, it is not a true OS. I hope this helps you.

Good luck,
SQ.......