InstallShield Z
From Just Solve the File Format Problem
(Difference between revisions)
(Added links to open source extractors; updated information) |
(→Software) |
||
| (9 intermediate revisions by 4 users not shown) | |||
| Line 2: | Line 2: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Archiving | |subcat=Archiving | ||
| − | |extensions={{ext|z}} | + | |extensions={{ext|z}}, {{ext|lib}} |
| + | |wikidata={{wikidata|Q28758103}} | ||
}} | }} | ||
| − | '''InstallShield Z''' format is a compressed archive format used by version 3 of the InstallShield installation software. Documentation is lacking but it has been | + | '''InstallShield Z''' format is a compressed archive format used by version 3 of the [[InstallShield]] installation software. Documentation is lacking but it has been partially decoded and implemented by open source projects. |
| − | It uses | + | It uses [[PKWARE DCL Implode]] compression. |
== Identification == | == Identification == | ||
| Line 20: | Line 21: | ||
* [https://github.com/wfr/unshieldv3/ Open source InstallShield v3 extractor (C++)] | * [https://github.com/wfr/unshieldv3/ Open source InstallShield v3 extractor (C++)] | ||
* [https://github.com/DeclanHoare/stix/ Open source InstallShield v3 extractor (Pascal & Assembly)] | * [https://github.com/DeclanHoare/stix/ Open source InstallShield v3 extractor (Pascal & Assembly)] | ||
| + | * [https://github.com/madler/zlib/tree/master/contrib/blast Free implementation of PKware "explode" algorithm (C)] | ||
| + | * [https://github.com/OmniBlade/isextract isextract] | ||
| + | * {{Deark}} | ||
== Sample files == | == Sample files == | ||
| − | * | + | * {{CdTextfilesURL|cdaction/cdaction24b/GOLF/}} → *.Z, *.LIB |
| − | * | + | * {{CdTextfilesURL|cdaction/cdaction40/DEER/}} → *.Z, *.LIB |
| − | * | + | * {{CdTextfilesURL|hotgames/KidsEMail/}} → *.z, _SETUP.LIB |
| + | * https://telparia.com/fileFormatSamples/archive/installShieldZ/ | ||
Revision as of 02:43, 16 October 2023
InstallShield Z format is a compressed archive format used by version 3 of the InstallShield installation software. Documentation is lacking but it has been partially decoded and implemented by open source projects.
It uses PKWARE DCL Implode compression.
Contents |
Identification
Files begin with bytes 13 5D 65 8C 3A 01 02 00.
See also
- InstallShield CAB (successor format)
- InstallShield installer archive
Software
- Universal Extractor
- InstallShield File Compressor: Official compressor/decompressor utility (Windows command-line). Several different versions of it can be found on the internet (as icomp.zip, icompx.zip, icomp95.zip, ...). Included with Universal Extractor.
- Open source InstallShield v3 extractor (C++)
- Open source InstallShield v3 extractor (Pascal & Assembly)
- Free implementation of PKware "explode" algorithm (C)
- isextract
- Deark