I want to load ntfs.exe before automatic backup
But the sentences after LH ntfs can't be executed
That is, after successfully loading ntfs.exe, it stops (and the content behind it I made a separate batch file, which can be executed manually without problems)
The following is the content of autoexec.bat
@ECHO OFF
PROMPT $P$G
PATH=A:\;..
LFNFOR ON
SET DIRCMD=/4
MODE CON RATE=32 DELAY=1
LH ntfs
LH KILLER
LH SHSUCDX /D:IDE-CD /Q /~+
LH DOSKEY
LH DOSLFN
tw /ns /np>nul
cls
echo
echo
echo
echo ==============================================================================
echo 1-Create d:\jesobak and automatically back up to this folder
echo ==============================================================================
echo 2-Create e:\jesobak and automatically back up to this folder
echo ==============================================================================
echo 3-Create f:\jesobak and automatically back up to this folder
echo ==============================================================================
echo 4-Create g:\jesobak and automatically back up to this folder
echo ==============================================================================
echo
echo
echo (Note: Supports NTFS partitions)
choice /C:1234 "Please enter your choice:"
if errorlevel 4 goto 4
if errorlevel 3 goto 3
if errorlevel 2 goto 2
if errorlevel 1 goto 1
:1
goto dghost
:2
goto eghost
:3
goto fghost
:4
goto gghost
:dghost
md d:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:2:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:eghost
md e:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:3:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:fghost
md f:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:4:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:gghost
md g:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:5:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:end
But the sentences after LH ntfs can't be executed
That is, after successfully loading ntfs.exe, it stops (and the content behind it I made a separate batch file, which can be executed manually without problems)
The following is the content of autoexec.bat
@ECHO OFF
PROMPT $P$G
PATH=A:\;..
LFNFOR ON
SET DIRCMD=/4
MODE CON RATE=32 DELAY=1
LH ntfs
LH KILLER
LH SHSUCDX /D:IDE-CD /Q /~+
LH DOSKEY
LH DOSLFN
tw /ns /np>nul
cls
echo
echo
echo
echo ==============================================================================
echo 1-Create d:\jesobak and automatically back up to this folder
echo ==============================================================================
echo 2-Create e:\jesobak and automatically back up to this folder
echo ==============================================================================
echo 3-Create f:\jesobak and automatically back up to this folder
echo ==============================================================================
echo 4-Create g:\jesobak and automatically back up to this folder
echo ==============================================================================
echo
echo
echo (Note: Supports NTFS partitions)
choice /C:1234 "Please enter your choice:"
if errorlevel 4 goto 4
if errorlevel 3 goto 3
if errorlevel 2 goto 2
if errorlevel 1 goto 1
:1
goto dghost
:2
goto eghost
:3
goto fghost
:4
goto gghost
:dghost
md d:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:2:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:eghost
md e:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:3:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:fghost
md f:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:4:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:gghost
md g:\jesobak
ghost.exe -clone,mode=pdump,src=1:1,dst=1:5:\jesobak\bak.gho -fx -sure -z1 -rb
goto end
:end
