Pack / Pack2: Difference between revisions
Jump to navigation
Jump to search
m Martini moved page Pack / UnPack to Pack / Pack2 without leaving a redirect |
|||
Line 16: | Line 16: | ||
|- | |- | ||
|pack2.exe ||2000-09-05|| || 73,600 bytes|| | |pack2.exe ||2000-09-05|| || 73,600 bytes|| | ||
|- | |||
|unpack.exe ||2002-09-10|| || 74,896 bytes|| | |||
|} | |} | ||
==Procedure Sample== | ==Procedure Sample== |
Revision as of 21:42, 7 May 2025
Pack / Pack2 | |
---|---|
![]() | |
Version | |
Vendor | IBM |
Author | |
License | |
Download | OS2Tk_4-5_2024-03-11.zip |
Website |
Pack.exe and Pack2 comes on the IBM OS/2 Toolkit package, usually installed at "C:\os2tk45\bin".
Version
Name | Date | Version | Size | Comments |
---|---|---|---|---|
pack.exe | 2001-09-25 | 58,400 bytes | ||
pack2.exe | 2000-09-05 | 73,600 bytes | ||
unpack.exe | 2002-09-10 | 74,896 bytes |
Procedure Sample
OK, so for anyone out there who may need this, or a possible future self of mine in a couple of years' time:
1. Unpack your archive file with the commands:
"Unpack oldapp.@ /SHOW > oldapp.txt" -- this will let you know the target paths for uncompressed files "Unpack oldapp.@ ." will expand all files in the current dir (".")
2. Edit oldapp.txt. This might look like this
----8<--------8<--------8<--------8<--------8<--------8<--------8<---- oldapp.@ [...] ->\os2\dll\OldApp.dll ->\os2\help\OldApp.hlp [...] ----8<--------8<--------8<--------8<--------8<--------8<--------8<----
and we need to transform that into something like this
----8<--------8<--------8<--------8<--------8<--------8<--------8<---- [...] FixedApp.dll /H:\os2\dll\OldApp.dll FixedApp.hlp /H:\os2\help\OldApp.hlp [...] ----8<--------8<--------8<--------8<--------8<--------8<--------8<----
to rebuild the archive using the new files instead of the old ones, while keeping their target paths. Save the list as FixedApp.lst, and type:
"Pack FixedApp.lst OldApp.@ /L"
to pack everything back. You should be good to go. Pack2 shares the same syntax, apparently.