• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Custom Autoexec.bat and config.sys for bootable USB

Burnsy

Limp Gawd
Joined
Jul 1, 2001
Messages
440
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
 
Back
Top