Skip to content Skip to main navigation Skip to footer

How to Run Image for DOS From a Bootable Floppy Disk

Please note: This article applies to version 1 product(s) only.

To run Image for DOS from a bootable floppy disk, first you will need to create the bootable disk itself. Please refer to the following links for further information:


How to Create a Windows 95/98/Me Startup Disk
How to Create an MS-DOS Startup Disk From Windows XP

Once you have created the bootable floppy disk, proceed as follows:

1. Copy the following Image for DOS files to the floppy disk:

  • IMAGE.EXE
  • CDBOOT.F35

2. Open Notepad (or your text editor of choice).

3. Copy and paste the following text into Notepad:

@echo off
cls
echo Launching Image for DOS...
rem Specify environment variables, if any, immediately below this line.
image.exe
cls
echo You may now reboot the computer (Ctrl + Alt + Delete).
echo.

4. Save the file in Notepad as A:\AUTOEXEC.BAT. You now have a bootable floppy disk that will automatically launch Image for DOS when booted from.


Note: If you wish to specify any environment variables for Image for DOS, you will need to add the appropriate line to the AUTOEXEC.BAT file, as indicated in step (3) above. For example, to enable the ATA environment variable, you would add this line immediately above "image.exe":

set IFD=ATA

Giving you this:

@echo off
cls
echo Launching Image for DOS...
rem Specify environment variables, if any, immediately below this line.
set IFD=ATA
image.exe
cls
echo You may now reboot the computer (Ctrl + Alt + Delete).
echo.

Please refer to the Image for DOS user manual for more information on available environment variables, INI options, and command line options, including ways to fully automate image and restore operations.

Was This Article Helpful?

0