How to modify Ghost Standard Tools Boot Disk Creator to launch Ghost with Default Command Line Switches
GST 3.X
This procedure will modify your boot disk so that when Ghost is launched automatically it will be launched with the suggested set of default switches.
This procedure does not apply to Ghost Solution Suite.
Examples:
You will either see one or two places to launch Ghost in the startup batch file. If you only see one, modify that one, if you see both, modify both.
A)
start ghost64.exe
should be changed to
start ghost64.exe -ntexact -ib
Before:
After:
Similarly:
start ghost32.exe should be changed to
start ghost32.exe -ntexact -ib
B)
if exist ghost32.exe (start ghost32.exe) else (start ghost64.exe)
Should be changed to this:
if exist ghost32.exe (start ghost32.exe -ntexact -ib) else (start ghost64.exe -ntexact -ib)
Before:
After: