This is a minor thing but it would be nice if this were implemented when you have some time to spare.
The issue at hand is the path to CMDOW.EXE inside SVCPACK\HFSLIP.CMD (second line). This path is created while running HFSLIP, and the drive letter depends on where the Windows system is located from which the HFSLIP program is run.
Eg., when running HFSLIP from a system that's installed on the C: drive, HFSLIP will use this as the second line in SVCPACK\HFSLIP.CMD:
IF EXIST C:\WINNT\SYSTEM32\CMDOW.EXE cmdow @ /HID
This works if the new system will be installed on the C: drive, but not if it's going to be installed on a different drive. In that case, CMDOW.EXE will not be found, which in turn makes its integration useless.
I'm now editing SVCPACK\HFSLIP.CMD manually after the program has run so the second line reads like this:
IF EXIST %SYSTEMROOT%\SYSTEM32\CMDOW.EXE cmdow @ /HID
It works great.
Do you think it's worth altering the HFSLIP program to do this automatically?