I need to send someone a self-extracting 3.5HD image.
I think some of us (myself included) are having trouble with your term "self-extracting".
Whether the image extracts itself or not, it still needs to be written to a floppy somehow.
I suppose there may be limiting factors (ie. you say the recipient is not very technical),
but it shouldn't be too tough to write a BAT file to do all the work.
You could use
RAWRITE to get the image onto floppy.
The BAT file would then look something like this:
Code:
@ECHO OFF
ECHO INSERT BLANK FLOPPY INTO DRIVE A:
PAUSE
RAWRITE DISK.IMG A:
Then just zip up the bat file, the image and RAWRITE.EXE into a ZIP file
and send that ZIP file to whomever.