How to Identify Installer Type and Extract It without Installing, Part 2: Inno Installer
Inno Setup is a free software that's also very popular in installer packaging. It comes with the install_script.iss file that's so useful for any portable application developer.
You can learn what libraries or services used by the application and most importanty—how to run it, complete with all required arguments/parameters.
How to Identify an Inno Setup Installer
We will use 7-Zip and its "Open archive" feature. There are 3 types of Inno installer:- one that is password protected (encrypted),
- one that "can't be opened" by 7-Zip, and
- one that can.
The Third Type: 7-Zip-friendly Ones
We'll begin with the most common, the third type, an example is Free Download Manager/FDM installer. Let's open it,This is what an Inno Setup installer typically looks like,
Let's go inside the .rsrc folder → 1033 (English) folder → and then double click to view the version.txt file. From that file we learn that it is an Inno Setup file,
The Second Type: Advanced 7-Zip Open Archive
The second type of Inno setup file "can't be opened" with usual Open archive,and we'll get an error message like this one:
Can not open file 'C:\0TEST\a_sharper_scaling_1_2_setup.exe' as archive
That error message along with installer icon that looks like this one:
usually means that it is most likely an Inno setup file.
When these two conditions are met then you can try it out with Inno unpacker utility—to see if it's extractable. We'll show that you later.
But if we want to make sure if it is an Inno Setup file, we can use the other Open archive > (with more options)—in this case we'll use the #:e option,
We'll see something like this: an 1.exe and 2 files,
For comparison, other Inno installer Aegisub—this time with Open archive > # option will look like this: now we have 2 pair of "1-2 files" and "3-4 files",
But if we open it with #:e option, it will look a lot "better",
We said "better" (in quotes) because even then, we can't really extract the contents properly with 7-Zip. But at least, we can be sure that it is an Inno Setup file.
The First Type: The Troublesome Ones
The rarest Inno setup file is the first type. We might be able to open it with 7-Zip but we can't extract its content with Inno Setup unpacker—without knowing the password.One example is VSDC Free Video Editor installer. We have to log its installation in VM/virtual machine and then following the before/after snapshots log to collect all the files manually... :(
It can be troublesome when the installer not just extracting its content in one place, which is usually %PROGRAMFILES% or %PROGRAMFILES(X86)% folder.
In case of VSDC installer, it also extracts to %COMMONPROGRAMFILES% or %COMMONPROGRAMFILES(x86)% and scatters quite a lot to %WINDIR%\SYSTEM32. This will mean a lot of work for each upgrade!
We're lucky that this kind of installers are rare. We only ever encountered one: VSDC Free Video Editor. We do hope they will change their policy :)
How to Extract Inno Setup File
Download the command line utility from Inno Setup Unpacker website. The help file is included in the package, but we'll use this ready to use command line template:We'll use "A Sharper Scaling/ASS" installer as example.innounp -x -m -a -d"__" "__.exe"
- Let's put ASS installer and innounp.exe in the same folder.
- Copy the command line template above to a text file → replace the "__" in the command line template with ASS installer name a_sharper_scaling_1_2_setup so it becomes:
innounp -x -m -a -d"a_sharper_scaling_1_2_setup" "a_sharper_scaling_1_2_setup.exe"
- Bring up a command window by pressing the Shift key → right-click on any empty space on the folder → click "Open command window here" → paste the command line we just copied and press Enter. Don't close the windows, wait until the extraction finished, usually it ends with install_script.iss file,
- Done! Here are the files,
One more thing, you can open more than one window command to extract several Inno Setup files in parallel.