[Release] Windows XP PowerPacker v1.0 RC4
#21
Posted 19 May 2005 - 12:52 AM
Update has been added to the download.
We are now at Windows XP PowerPacker Beta v.1.02
1. I fixed the window size. It should now fit any resolution that somebody would use.
2. Made PowerPacker Set Attributes on all files to normal.
3. Added features to help make sure users do not point to incorrect directories.
#22
Posted 21 May 2005 - 01:09 AM
There were no changes to the program except for the new "Help" button which opens up a quick help file I made to make it a little easier to understand the program.
I still need beta testers.
#23
Posted 21 May 2005 - 04:16 PM
#24
Posted 22 May 2005 - 01:04 AM
This program does not need to be installed. The only cd's you would need to swap would be different versions of the OS.
Can you try to explain in more detail?
#25
Posted 22 May 2005 - 09:56 AM
Thanks for a nice application
However, when I run it I get some errors:
The boot folders have not been copied to my powerpack cd folder
so I get XVI32 error opening files setupldr.bin and txtsetup.sif.
Boot folder is still found in root of boot HD, I use several drives
will copy powerpack cd folder to C drive and see it it makes any differance.
Regards
Swe_mx
#26
Posted 22 May 2005 - 12:56 PM
Swe_mx, on May 22 2005, 09:56 AM, said:
Thanks for a nice application
However, when I run it I get some errors:
The boot folders have not been copied to my powerpack cd folder
so I get XVI32 error opening files setupldr.bin and txtsetup.sif.
Boot folder is still found in root of boot HD, I use several drives
will copy powerpack cd folder to C drive and see it it makes any differance.
Regards
Swe_mx
<{POST_SNAPBACK}>
Is the boot folder resideing on the same drive as your "boot.ini" file? I assumed that this folder would always be on the same drive as the "boot.ini" file. I am probably wrong though. It probably copys the boot files to a HD with the most space.
I will fix this issue in the next version. Instead of having it look on the same drive as "boot.ini" I will have it check every drive for it.
Thanks for the report... I didn't think about that.
#27
Posted 22 May 2005 - 02:06 PM
1. Fixed problem with Boot directory not copying to the destination sometimes. It should work every time now.
Thanks go to: Swe_mx for pointing out this major bug.
#28
Posted 22 May 2005 - 03:09 PM
I made a small util which does that, but you could easily write something yourself with AutoIt.
If you want to know how I did it, just PM me.
#29
Posted 22 May 2005 - 07:40 PM
How did you parse the dosnet.inf file?
#30
Posted 23 May 2005 - 01:44 PM
Quote
d2 = \cmpnents\tabletpc\I386
d3 = \cmpnents\mediactr\I386
d4 = \cmpnents\netfx\I386
I split these lines at the = and trim the (possible) spaces from the beginnings and the ends. I then store them in a so called hashtable for later reference.
The next sections which are interesting are the FloppyFiles.? sections, where ? is a number. (So not the FloppyFiles.x one)
Quote
d1,ntdetect.com
d1,ntkrnlmp.exe
d1,setupldr.bin
d1,txtsetup.sif
d1,biosinfo.inf
[FloppyFiles.1]
d1,disk1,disk102
d1,hal.dll
d1,halacpi.dll
d1,halapic.dll
...
[FloppyFiles.2]
d1,disk1,disk103
d1,cpqarray.sys
...
[FloppyFiles.3]
d1,disk1,disk104
d1,ntdll.dll,system32\ntdll.dll
d1,usetup.exe,system32\smss.exe
d1,flpydisk.sys
...
If we look at the d1,disk1,disk101 entry. It tells us that we have to copy the disk1 file from d1 (which is \I386 as we discovered before) and copy it to our bootfolder using the name disk101.
The second one d1,ntdetect.com, would also be copied from I386, but because no destination name is specified it will retain its current name.
And lastly I want to point to FloppyFiles.3 where a couple of entries have folder names in their destination section.
I'll leave it up to you to translate this to AutoIt code, but feel free to ask questions if something is unclear.
#31
Posted 23 May 2005 - 06:32 PM
Nazgul, on May 23 2005, 01:44 PM, said:
Quote
d1 = \I386
d2 = \cmpnents\tabletpc\I386
d3 = \cmpnents\mediactr\I386
d4 = \cmpnents\netfx\I386
I split these lines at the = and trim the (possible) spaces from the beginnings and the ends. I then store them in a so called hashtable for later reference.
The next sections which are interesting are the FloppyFiles.? sections, where ? is a number. (So not the FloppyFiles.x one)
Quote
d1,ntdetect.com
d1,ntkrnlmp.exe
d1,setupldr.bin
d1,txtsetup.sif
d1,biosinfo.inf
[FloppyFiles.1]
d1,disk1,disk102
d1,hal.dll
d1,halacpi.dll
d1,halapic.dll
...
[FloppyFiles.2]
d1,disk1,disk103
d1,cpqarray.sys
...
[FloppyFiles.3]
d1,disk1,disk104
d1,ntdll.dll,system32\ntdll.dll
d1,usetup.exe,system32\smss.exe
d1,flpydisk.sys
...
If we look at the d1,disk1,disk101 entry. It tells us that we have to copy the disk1 file from d1 (which is \I386 as we discovered before) and copy it to our bootfolder using the name disk101.
The second one d1,ntdetect.com, would also be copied from I386, but because no destination name is specified it will retain its current name.
And lastly I want to point to FloppyFiles.3 where a couple of entries have folder names in their destination section.
I'll leave it up to you to translate this to AutoIt code, but feel free to ask questions if something is unclear.
<{POST_SNAPBACK}>
So the [FloppyFiles.?] sections are the only sections we need to grab files from, if I understand you correctly?
Would you mind if I integrate your program within mine at least untill I get a chance to write an autoit that does this?
It looks like it might take me a little while to write this. But from what you say it doesn't really sound too hard... it's just finding the time to do it.
Thanks a lot Nazgul.
#32
Posted 23 May 2005 - 10:19 PM
Siginet, on May 24 2005, 01:32 AM, said:
#34
Posted 24 May 2005 - 03:02 AM
We may be getting close to a full release allready.
Please try the new release out and let me know if you have any troubles.
It should be much faster now. Thanks to Nazgul's BootFolder.exe program!
#35
Posted 25 May 2005 - 12:38 AM
It creates a multiboot CD where you can choose: with or without driverpacks, or normal installation.
But will it use the same files for this? (Can I put the iso on a CD?)
And when the 'sourcefiles' are edited by nLite, will it still work?
if Yes, I will test this soon :-)
#36
Posted 25 May 2005 - 01:45 AM
Telenut, on May 25 2005, 12:38 AM, said:
It creates a multiboot CD where you can choose: with or without driverpacks, or normal installation.
But will it use the same files for this? (Can I put the iso on a CD?)
And when the 'sourcefiles' are edited by nLite, will it still work?
if Yes, I will test this soon :-)
<{POST_SNAPBACK}>
Yes it will allow you to put multiple versions of XP on a CD or DVD then it will allow you to create an optimized ISO which you can burn to CD/DVD with just about any CD/DVD burning software. You can have One with DPs One without and one normal version of each different XP cd.
As for your Nlite question... any limitations that you had with the driverpacks would still be the same.
Also... you would probably need to use Nlite on the source files before using PowerPacker.
I have plans on adding an option in the program to get rid of unneeded Update directories which will save space and also options to get rid of the LANG folder. But I haven't implemented it yet.
The program was made to simplify making multiboot XP disks with/without driverpacks.
Enjoy
#37
Posted 05 June 2005 - 03:17 AM
keep up the good work.
#38
Posted 05 June 2005 - 10:20 AM
hxxp://www.pandasoftware.es/virus_info/enciclopedia/ficha.aspx?iddeteccion=29250
Could it be a false positive?
#39
Posted 05 June 2005 - 10:57 AM
#40
Posted 05 June 2005 - 11:05 AM
Swimming_Bird, on Jun 5 2005, 03:17 AM, said:
keep up the good work.
<{POST_SNAPBACK}>
I plan to add many things to this program. I have never used Xpize... but I will try it out and see if it can be used in PowerPacker.
What I did do to help people add certain things is I put a section called "Extra Files".
Inside of "Extra Files" is a section called "Extra Pack Files" with it you can easily add extra files into each "Pack" (Read the help file for my definition of "Pack".)
Another section in there is called "Extra Root Files" which you can use to add files to the root of the entire package.



Help
This topic is locked

Back to top








