I am wishing to make a bootable USB that is able to boot up with secure data disposal disk as well as our norton ghost boot disk. I am able to create each one individually but can not put them together on one disk.
I currently have the SDD in a folder called "SCRUB" and the image disk in a folder called "IMAGE" located on the root of the USB Drive
I am wishing to create a autoexec.bat and config.sys (which are located on the root of the USB) that when I choose for example "Norton Ghost" from the boot menu, it will go into the "Image" folder and then run the autoexec.bat for the norton image software and then give me my boot options from there.
my assumption is once the autoexec.bat in the root folder switches to "image" and then runs the autoexec.bat it should also call upon the config.sys in that image folder, but I believe that I am missing something that is preventing this.
I have posted my code below
Autoexec.bat
----------------------
@echo off
if %config% == SDD goto SDD
if %config% == GHOST goto GHOST
GOTO QUIT
:SDD
cd scrub
Autoexec.bat
GOTO QUIT
:GHOST
cd image
autoexec.bat
GOTO QUIT
:QUIT
CONFIG.SYS CODE
-------------------------------
[menu]
menuitem=GHOST, Norton Ghost
menuitem=SDD, Secure Data Disposal
[GHOST]
[SDD]
[common]
DOS=HIGH,UMB
files=30
buffers=20
LASTDRIVE=Z
I currently have the SDD in a folder called "SCRUB" and the image disk in a folder called "IMAGE" located on the root of the USB Drive
I am wishing to create a autoexec.bat and config.sys (which are located on the root of the USB) that when I choose for example "Norton Ghost" from the boot menu, it will go into the "Image" folder and then run the autoexec.bat for the norton image software and then give me my boot options from there.
my assumption is once the autoexec.bat in the root folder switches to "image" and then runs the autoexec.bat it should also call upon the config.sys in that image folder, but I believe that I am missing something that is preventing this.
I have posted my code below
Autoexec.bat
----------------------
@echo off
if %config% == SDD goto SDD
if %config% == GHOST goto GHOST
GOTO QUIT
:SDD
cd scrub
Autoexec.bat
GOTO QUIT
:GHOST
cd image
autoexec.bat
GOTO QUIT
:QUIT
CONFIG.SYS CODE
-------------------------------
[menu]
menuitem=GHOST, Norton Ghost
menuitem=SDD, Secure Data Disposal
[GHOST]
[SDD]
[common]
DOS=HIGH,UMB
files=30
buffers=20
LASTDRIVE=Z