Jimbo007 wrote:
OK. On one old pc it's works. I get a dos prompt for username - then I hit enter and get prompt for password - I can see the letters and the cursor moves with the username but with the password the cursor never shows anything and doesn't move - BUT - it must be taking it becasue I get past that and the main window comes up.
If this is happening, try typing in a bad user name, I'm willing to bet it will still work. If it still connects to the share with a bad user name and no password, then it means the security on the folder is set to "Everyone" and you will need to fix that.
Another option is to remove ghost from the auto start, instead make a batch file that asks for the user name and password, does the net use command, then starts ghost. Something like:
Configuration Files:
START.BAT:
set path=%path%;x:\ghost
x:
cd \ghost
rem --- This will create primary OS drive configuration ---
ghost32.exe /setosdrives /blind >> x:\ghost\startlog.txt
custom.bat
@echo off
echo "Enter user name "
set /p UserName=
echo "Enter password"
set /p Password=
net use P: \\perseus\img /user:%UserName% %Password%
start ghost32.exe
Not sure if this will work right "out of the box" but something like this should work. It will be kind of annoying due to the fact that you will need to modify each disk/ISO you make to add these in, but easily done.