Quote:
Originally Posted by andreiutzu21
on setup page , no matter what component i chose setup will require Data1.bin.001 if i select only component 3 stil requires Data1.bin.001
what should i do?
P.S. i'm using EXTRACT SETTINGS from Setup.ini
with CIU 3.0.0.0 u7 no problem at all
|
I have already discovered the error.
The components are not being checked correctly using the [ExtractSettings] section.
Open the script u8 and go to line
9168 and you will find this line:
Code:
if (Data[i].Arc[0] <> '') and (Data[i].Arc[1] <> '') and ComponentsCheck(Data[i].Arc[7]) and TasksCheck(Data[i].Arc[5]) and LanguagesCheck(Data[i].Arc[6]) then
Only replace the value in blue with the value in red (Replace 7 with 4).
Code:
if (Data[i].Arc[0] <> '') and (Data[i].Arc[1] <> '') and ComponentsCheck(Data[i].Arc[4]) and TasksCheck(Data[i].Arc[5]) and LanguagesCheck(Data[i].Arc[6]) then
Thank you for reporting the error.