tis-innosetup-unpacker icon

Innounp

Silent install package for Innounp

0.50-15

innounp

innounp.exe --help innounp, the Inno Setup Unpacker. Version 0.50

Usage: innounp [command] [options] <setup.exe or setup.0> [@filelist] [filemask ...] Commands: (no) display general installation info -v verbosely list the files (with sizes and timestamps) -x extract the files from the installation (to the current directory, also see -d) -e extract files without paths -t test files for integrity Options: -b batch (non-interactive) mode - will not prompt for password or disk changes -q do not indicate progress while extracting -m extract internal embedded files (such as license and uninstall.exe) -pPASS decrypt the installation with a password -dDIR extract the files into DIR (can be absolute or relative path) -cDIR specifies that DIR is the current directory in the installation -n don't attempt to unpack new versions -fFILE same as -p but reads the password from FILE -a extract all copies of duplicate files -y assume Yes on all queries (e.g. overwrite files)

  • package: tis-innosetup-unpacker
  • name: Innounp
  • version: 0.50-15
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
  • licence: GPLv3+
  • locale: all
  • target_os: windows
  • impacted_process: innounp
  • architecture: all
  • signature_date:
  • size: 232.82 Ko
  • homepage : https://github.com/WhatTheBlock/innounp
  • depends:

package           : tis-innosetup-unpacker
version           : 0.50-15
architecture      : all
section           : base
priority          : optional
name              : Innounp
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Joffrey Le Piquet
description       : Innounp is an Innosetup unpacker.
depends           : tis-7zip
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.4
sources           : https://github.com/WhatTheBlock/innounp
installed_size    : 
impacted_process  : innounp
description_fr    : Innounp est un unpacker d'Innosetup.
description_pl    : Innounp jest programem rozpakowującym Innosetup.
description_de    : Innounp ist ein Entpacker von Innosetup.
description_es    : Innounp es un desempaquetador de Innosetup.
description_pt    : Innounp é um desempacotador Innosetup.
description_it    : Innounp è un disimballatore di Innosetup.
description_nl    : Innounp is een Innosetup uitpakker.
description_ru    : Innounp - это распаковщик Innosetup.
audit_schedule    : 
editor            : 
keywords          : Installshield,ISx
licence           : GPLv3+
homepage          : https://github.com/WhatTheBlock/innounp
package_uuid      : 417c9145-229c-4708-b6e6-f0b04bd35f3e
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/WhatTheBlock/innounp/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 66837a6911e0a0bdb772d9e6ca99652781db793e8df7d1bf2a865bdfe02bcee1
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-06-27T10:01:00.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : ldi2xSlylI4LiySFwc/9Hmqj/4l08nG1vHJsRWmvPj+qvE9PXNKLQVjDmgMn3HMbEbfahSdWpnoc7oHRahUzSHTHHean60g5O/QQf3T4x6H3aRbimlqkYgAqX6Ctnpp+AhWOfNhDGbhjwQMiRqK6NCIq3UWTuaHOhgSNIkgiD8mFYkXfgK7wOgZztPr/dl8bfTihXsFgQecugnWtwGqg2iKJA/F2tQtfm8SwlQJ8sD4Uv+9PsxKy+l8xhmZzIbo95Ayfe8qcLGSLpWYKX83URVfmgxfQPjh41PQ4/85tLmgYyAM2vDjx4RJYcP0Dlv0L+7H4y8v8AfvfWq3qZaSrtA==

# -*- coding: utf-8 -*-
from setuphelpers import *

install_folder = makepath(programfiles,"InnoSetup Unpacker")

def install():
    # Initializing variables
    bin_name = glob.glob("*.exe")[0]
    install_file = makepath(programfiles,"InnoSetup Unpacker",bin_name)
    mkdirs(install_folder)
    filecopyto(bin_name,install_file)

def audit():
    install_file = makepath(programfiles,"InnoSetup Unpacker","innounp.exe")
    if isfile(install_file):
        return "OK"
    else:
        return "ERROR"

def uninstall():
    if isdir(install_folder):
        remove_tree(install_folder)

# -*- coding: utf-8 -*-
from setuphelpers import *
import json


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    api_url = "https://api.github.com/repos/WhatTheBlock/innounp/releases/latest"

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for download in json_load["assets"]:
        if download["name"].endswith(".exe"):
            download_url = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin).split("-")[0]
    # if not version_from_file.startswith(version) and version_from_file != '':
    if Version(version_from_file) != Version(version) and version_from_file != "":
        print("Changing version to the version number of the binary")
        os.rename(latest_bin, latest_bin.replace(version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return package_updated

14b7a2f341354ddf9ea9c356514bb345913289594fa3d58d00e47a025e5d45c7 : WAPT/README.md
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1aeeefb7a6a14bd86615bb1a095605b1102584629d8764ba952683f502e1cb0e : WAPT/control
66837a6911e0a0bdb772d9e6ca99652781db793e8df7d1bf2a865bdfe02bcee1 : WAPT/icon.png
9b72ad9f93d167652a0e2bf3921abdfd3e6747c5e718461a2e58b9dfacd31f4c : innounp.exe
d6c87ba84163460096cd438d85585cca53af551b749674d7533216f1d0fe96ea : luti.json
33f0af25156823ad2a7474d8f2125aa2115d3d7561bd7b05291bdf6f2ffcefc8 : setup.py
92f1d3d65d43b50cb910b400c84121f3dfc68bc7f5d1f5ccfb201cb12aa3a133 : update_package.py