The Computer Oracle

How do I extract an InstallShield Cabinet file?

--------------------------------------------------
Become or hire the top 3% of the developers on Toptal https://topt.al/25cXVn
--------------------------------------------------

Track title: CC B Schuberts Piano Sonata No 16 D

--

Chapters
00:00 Question
00:20 Accepted answer (Score 11)
02:05 Answer 2 (Score 11)
05:06 Answer 3 (Score 0)
05:21 Answer 4 (Score 0)
05:34 Thank you

--

Full question
https://superuser.com/questions/88645/ho...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#extract #installshield #cab

#avk47



ANSWER 1

Score 12


EDIT (2024) / Note: Please see the bottom of this answer for newer alternatives such as "UniExtract2". This original answer below is old, but is kept here as a method that works on older IS builds.


"i6comp" (in original UniExtract and unshield) is a wasted effort anymore. Anything equal or over InstallShield v12 (InstallScript Projects) will not extract. InstallShield's own "CabView" (ISCabVu.exe) will let you do one file at a time. But I need to extract over 10,000 files for each separate language to rebuild an installer. So in this regard it doesn't help much either.

The only option I have found is taking the IS2009 "iscab.exe" (last version released) and placing in my IS2010 system directory. Add IS "system" path to your %path% ENV. Ended up having to create 15 separate INI files, but got all the LANG dependent files separated. Certainly beats using Cab View and repeating an extract 10,000 times!

Example:

Create a blank INI file. This will hold all file information from the cab(s):

type nul > allfiles.ini

Run this iscab.exe command to add all files to your new INI file:

iscab.exe ..\MyAppSetupDir\data1.cab -i"allfiles.ini" -lx

Backup "allfiles.ini" at this point.

Edit another new INI file - duplicating layout of first INI.
Only include files you want to extract. (Or, just edit the non-backup/original INI from above and remove anything you don't want to extract.)

Run the following command when your new INI is ready:

iscab.exe ..\MyAppSetupDir\data1.cab -i"MyEditedISCabIni.ini" -x

NOTE: You will have to recreate the parent level folders yourself, or you will get an error.

Seems rather ridiculous to me that ISCabVu limits you to 1 file at a time when in fact they had made the utility detailed above. They no longer distribute this utility ( >= IS2010). Very frustrating.


Updates to answer:

Flex site:
ISCabExe (They removed their help site).

Please also see this post & answers.

Edit (2016):
Some may be able to still use iscab.exe from last uniextract commit on older IS setup's:
https://code.google.com/archive/p/uniextract/source/default/source
(Download 'source' and look for iscab.exe in archive)

Edit (2024):
Also have a look at Unshield as well as UniExtract2 projects.
(Both are currently maintained as of 2024.)




ACCEPTED ANSWER

Score 11


One of my favorite little helpers:

Universal Extractor is a program doing exactly what it says: extract files from any type of archive, whether it's a simple ZIP file, an installation program, or even a Windows Installer (.msi) package.

... and indeed anything Installshield (see list below).

alt text

Archive Type    Common File Extension(s)
7-zip archive   .7z, .exe
ACE archive     .ace
ARC archive     .arc
ARJ archive     .arj, .exe
ASpack compressed file  .exe
BIN/CUE CD-ROM image    .bin, .cue
bzip2 archive   .bz2, .tbz2, .tar.bz2
CPIO compressed file    .cpio
Debian package  .deb
DiscJuggler CD-ROM image    .cdi
Encoded files   .b64, .uu, .uue, .xx, .xxe, .yenc, .ntx
Gentee package  .exe
gzip archive    .gz, .tgz, .tar.gz
IMG floppy disk image   .img
Inno Setup package  .exe
Installer VISE package  .exe
InstallShield Cabinet archive   .cab, .1, .lib
InstallShield package   .exe
ISO 9660 CD-ROM image   .iso
KGB archive     .kgb, kge, .exe
LZH compressed file     .lzh, .lha
LZMA compressed file    .lzma
LZO compressed file     .lzo
LZW compressed file     .Z, .tz, .tar.Z
LZX compressed file     .lzx
MHTML file  .mht
Microsoft Cabinet archive   .cab, .exe, .imf
Microsoft Compiled Help file    .chm
Microsoft compressed file   .??_
Microsoft LIT e-book    .lit
Microsoft Windows Help file     .hlp
Nero CD-ROM images  .nrg
NSIS package    .exe
Oasis Document Format (ODF) document    .odt, .odp, .odg, .ods
Office Open XML (OOXML) document    .docx, .pptx, .xlsx
Outlook Express mail archive    .dbx
PEA archive     .pea
RAR archive     .rar, .001, .exe
Reflexive Arcade package    .exe
RoboForm package    .exe
RPM package     .rpm
SetupFactory package    .exe
SIS (SymbianOS) packages    .sis
StuffIt packages    .sit
TAR archive     .tar, .tbz2, .tgz, .tz, .tar.bz2, .tar.gz, .tar.z
UHARC archive   .uha
UPX compressed file     .exe, .dll
Windows Imaging Format image    .wim
Windows Installer package   .msi
Windows Installer patch     .msp
Windows Update Standalone patch     .msu
Wise Installer package  .exe
ZIP archive     .zip, .jar, .xpi, .wz, .exe
Zoo archive     .zoo

Universal Extractor is freeware and portable.

It's a brilliant utility to extract drivers or installers to make applications 'portable' and as they claim, it really works for pretty much any form of archive.




ANSWER 3

Score 0


Download the InstallShield CAB Utilities specific to your version here:

http://www.sac.sk/files.php?d=7&l=I

Use this webpage for reference on how to use them:

http://74.125.95.132/search?q=cache:qF8aMTUs09YJ:www.experts-exchange.com/Software/System_Utilities/Compression_Tools/Q_23617325.html+can%27t+open+a+CAB+file&cd=5&hl=en&ct=clnk&gl=us




ANSWER 4

Score 0


The unshield command of the SynCE project worked for me.