When hfslip-2.0.0pa_80630a.cmd tries to get my language...
CODE
REM ======================GET LANG========================================================
:GETLANG
FOR /F "TOKENS=2 DELIMS=2." %%I IN ('DIR/B/O-S SOURCE\I386\MFC42*.DL*') DO (
IF /I NOT "%%I"=="U" IF /I NOT "%%I"=="DL_" IF /I NOT "%%I"=="DLL" SET LNG=%%I
)
It works fine (I tested copying this code to a separate batch and
echoing the result variables)
The problem comes when it wants to choose the language. I understand that you can't know the name of every file in every language of the XP source disk. Here's my buggy part of the code:
CODE
IF /I "%LNG%"=="ESN" SET LCIDD=3082&SET Localization=Spanish&SET LNG=ESN&SET LG=ES&SET LG3=c0a
It tries to compare "ESP" with "ESN", it obviously won't coincide so it executes this part:
CODE
IF NOT DEFINED LG (
ECHO.&ECHO HFSLIP was unable to determine the language of your source OS. As a result,
ECHO several updates such as the Windows Update Agent ^(all OS's^) and the hotfix
ECHO for .NET Framework 1.1 ^(Server 2003^) cannot be slipstreamed properly.&PAUSE
)
Maybe you can correct it if it is wrong or maybe I'm doing something wrong, don't know.
The file you're looking for is MFC42ESP.DL_, it must be really difficult to make such a great program for every language. Congratulations. And thank you really much for the program and the support. I really appreciate it.
Note: Sorry if this isn't supposed to be placed here. I'm new (9 posts

jajaja)
Is there anyone with a spanish source out there who can check if I'm the only one having this issue?
Note2: I've seen a new issue, don't know what effect it will have :S
CODE
368 archivos copiados
Merged extracted driver packages into one folder
Adding updated driver files from hotfixes
bthport.sys
Finishing up setup information files
"HIVEHEAD" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
Creating updated DRIVER.CAB and driver information file
Microsoft (R) Cabinet Maker - Version 5.1.2600.2180
Copyright (c) Microsoft Corporation. All rights reserved..
373,531,372 bytes in 4,784 files
16.44% - cq12fcic.dll (899 of 4,784)
¿"HIVEHEAD" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.?
it tries to execute something called hivehead, i've seen the code and it seems to be a variable setting to 1 but I don't know how to fix this or what consecuences it will have.