Problem handling multiple inf files.
- Kelsenellenelvian
- Moderator
- Posts: 4383
- Joined: Tue Nov 30, 2004 8:32 pm
- Location: Pocatello, ID
- Contact:
Problem handling multiple inf files.
I have been doing some extensive testing and have found out that with to many addons packs integrated some of the inf files are not getting proccesed. Any ideas on this??
I am going to keep testing and see if I can pin down the cause of this.
I am going to keep testing and see if I can pin down the cause of this.
- Kelsenellenelvian
- Moderator
- Posts: 4383
- Joined: Tue Nov 30, 2004 8:32 pm
- Location: Pocatello, ID
- Contact:
- Kelsenellenelvian
- Moderator
- Posts: 4383
- Joined: Tue Nov 30, 2004 8:32 pm
- Location: Pocatello, ID
- Contact:
- Kelsenellenelvian
- Moderator
- Posts: 4383
- Joined: Tue Nov 30, 2004 8:32 pm
- Location: Pocatello, ID
- Contact:
Ok I am positive it is a limitation of the integrator or windows itself the damn packs work one at a time but if you add more than one pack it will only install one of the packs or none of them. I have done over a dozen tests. All of the files are copied to I386 and all of the entries are made to dosnet.inf, txtsetup.inf and sysoc.inf.
- Kelsenellenelvian
- Moderator
- Posts: 4383
- Joined: Tue Nov 30, 2004 8:32 pm
- Location: Pocatello, ID
- Contact:
OK. I have run many tests and the only error I can find is that UnOAddons_CalcPlus_v1.0.cab does not install properly. Wether it is installed standalone or with others. The reason why is it uses
But it should be:
Because there is no...
at all. But the %addonscab% variable is trying to be used. Therefore certain lines are being written to the dosnet.inf and txtsetup.sif files. But the lines are not needed and the variable for %addonscab% is never set because it is not in [filenames] section and the file does not exist.
So UnO needs to fix this one.
But other than that I do not see any errors.
But I am testing with RC13 and not RC12. RC13 and RC12 shouldn't have a difference in this area anyways.
Code: Select all
[filenames]
addonsinf=CalcPlus_Addons.inf
[dosnet_files]
d1,%addonsinf%
d1,%addonscab%
[txtsetup_files]
%addonsinf%= 100,,,,,,,20,0,0
%addonscab%= 100,,,,,,,20,0,0
Code: Select all
[filenames]
addonsinf=CalcPlus_Addons.inf
[dosnet_files]
d1,%addonsinf%
[txtsetup_files]
%addonsinf%= 100,,,,,,,20,0,0
Code: Select all
[filenames]
addonscab=CalcPlus_Addons.cab
So UnO needs to fix this one.

But other than that I do not see any errors.
But I am testing with RC13 and not RC12. RC13 and RC12 shouldn't have a difference in this area anyways.
- Kelsenellenelvian
- Moderator
- Posts: 4383
- Joined: Tue Nov 30, 2004 8:32 pm
- Location: Pocatello, ID
- Contact:
I think you were right. I was digging into it some more and I noticed that the dosnet.inf [files] section was not being edited correctly.
I'm not sure if this is the same issue you were having. I was only testing with RC13.
Whatever it was... I fixed it now.
Was it only the dosnet.inf file that was giving you an issue? Because that was the only one I found an issue with.
I'm not sure if this is the same issue you were having. I was only testing with RC13.
Whatever it was... I fixed it now.
Was it only the dosnet.inf file that was giving you an issue? Because that was the only one I found an issue with.
Forgot to remove the referances to the cab, beginers mistake, and my first one... well first public one anyway lolI have run many tests and the only error I can find is that UnOAddons_CalcPlus_v1.0.cab does not install properly.
So siginet these issues are gone now? i`ve been testing aswell and having trouble. can i try RC13 out?
I've also noticed that UnO uses this same info in all his addons:That information must be unique. Likewise for the entries in sysoc.inf.
I can see that causing a lot of problems if users integrate multiple addons at once.
Code: Select all
[Optional Components]
UnOAddons
[UnOAddons]
OptionDesc ="Post-SP2 Addons"
Tip ="Addons for the RyanVM Update Pack"
I can see that causing a lot of problems if users integrate multiple addons at once.