jaclaz, on Jan 25 2010, 12:16 PM, said:
I just recreated the stick.
changes:
added dosdev.exe to txtsetup.sif
added the showdrive.exe call to setup.cmd. Positioned it right after the mountvol.exe check/call (before the "set TAGFILE")
After a new started setup, the system again reboots twice and ends up by GLOBALROOT\??\\WINSETUP.......
When i start the cmd and run mnt i get the same result as before.
When i use dosdev.exe i get the following result:
C: = \Device\HarddiskVolume1 [Fixed] D: = \Device\CdRom0 [CDRom] Y: = \Device\harddisk20\partition1; \Device\harddisk19\partition1; \Device\harddisk18\partition1; \Device\harddisk17\partition1; \Device\harddisk16\partition1; \Device\harddisk15\partition1; \Device\harddisk14\partition1; \Device\harddisk13\partition1; \Device\harddisk12\partition1; \Device\harddisk11\partition1; \Device\harddisk10\partition1; \Device\harddisk9\partition1; \Device\harddisk8\partition1; \Device\harddisk7\partition1; \Device\harddisk6\partition1; \Device\harddisk5\partition1; \Device\harddisk4\partition1; \Device\harddisk3\partition1; \Device\harddisk2\partition1; \Device\harddisk1\partition1; \Device\harddisk0\partition1 [NoRootDir]
When i try to Mount them with mnt.exe the only one which works is:
\Device\harddisk0\partition1
and thats the C: of the HDD.
I think the Y: mapping comes from the for-loop in the setup.cmd:
FOR /L %%G IN (0,1,20) DO ( mnt.exe Y: \device\harddisk%%G\partition1 dir Y:%TAGFILE% > nul 2>&1 && set CDDRIVE=Y: if defined CDDRIVE goto :CDDRIVE_found )
For some reason it does not overrive the mappings, no it extends it?!?
EDIT:
Okey, i changed the for-loop to:
FOR /L %%G IN (0,1,20) DO ( mnt.exe Y: \device\harddisk%%G\partition1 dir Y:%TAGFILE% > nul 2>&1 && set CDDRIVE=Y: if defined CDDRIVE goto :CDDRIVE_found mnt.exe -u Y: )
If i'm not wrong, the last line in the loop runs only, if the TAGFILE was not found. If it is found, the goto jumps out of the loop.
Now the mnt.exe and dosdev show only the C: and D: Drives.
So i think the stick isn't found at all. Maybe a driver problem?
This post has been edited by Rotbard: 25 January 2010 - 08:50 AM



Help
Back to top












