- package: tis-resourcehacker-portable
- name: Resource Hacker
- version: 5.2.8-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT
- licence: proprietary_restricted
- locale: all
- target_os: windows
- impacted_process: ResourceHacker
- architecture: all
- signature_date:
- size: 3.40 Mo
package : tis-resourcehacker-portable
version : 5.2.8-0
architecture : all
section : base
priority : optional
name : Resource Hacker
categories : Utilities
maintainer : WAPT Team,Tranquil IT
description : Resource Hacker is a resource editor for 32bit and 64bit Windows® applications
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.5
sources :
installed_size :
impacted_process : ResourceHacker
description_fr :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor :
keywords : tool
licence : proprietary_restricted
homepage :
package_uuid : bc2cd770-7d60-4072-a69d-5e547278010e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : 170b563803fd6567e6b65eb9b34e8ea049654848f91ac966d5112131fcaf4adf
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-13T08:07:56.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 : qfOtC/i3KIxZMyxxZX6c6oTN/JcoyDvyqkT1AZVTnsdtc2lUUDJ7oTAvb1CBnFCrY1OUf3JoXHtEsUjUE0z0hZBu4iAXpjkJP9u5x3I17gmPhXTt21woL2iZVfrtrhf6escWdkckF59CIjGjk8ictha++xmiughvJavobB4+2ymLmuzluh4DJzpzAtZn/TIkZTrQ7GZHpBI8TagqJCn3xsl6kcAbv+I6qXl3k+oM5Pf4m0Axp+KMy9vB/0gvnmKX5gHEwo7oHRtfM1d1Hi64l9qJSwX6rVfXbfeW72dsbMzRYCTgi8mXhctDM4W5RhOWkiWdEt0bLnW/HQE3WasJ6g==
# -*- coding: utf-8 -*-
from setuphelpers import *
# Defining variables
app_name = "Resource Hacker"
app_dir = makepath(programfiles, "Resource Hacker")
app_path = makepath(app_dir, "ResourceHacker.exe")
def get_installed_version(app_path):
return get_file_properties(app_path).get("FileVersion", "")
def install():
# Declaring local variables
zip_name = glob.glob(f"*.zip")[0]
unzipped_dir = "Resource Hacker"
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
print("Extracting: %s to: %s" % (zip_name, unzipped_dir))
unzip(zip_name, unzipped_dir)
print('Copy to %s' % app_dir)
copytree2(unzipped_dir, app_dir, onreplace=default_overwrite)
def audit():
# Auditing software
audit_status = "OK"
installed_version = Version(get_installed_version(app_path),3)
if Version(installed_version) < Version(control.get_software_version()) and audit_version:
print("%s is installed in version (%s) instead of (%s)" % (app_name, installed_version, control.get_software_version()))
audit_status = "WARNING"
elif isdir(app_dir) and not dir_is_empty(app_dir):
print("%s (%s) is installed" % (app_name, installed_version))
audit_status = "OK"
else:
print("%s is not installed" % app_name)
audit_status = "ERROR"
return audit_status
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import platform
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
url = "https://www.angusj.com/resourcehacker/"
user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "a", "href",user_agent=user_agent, proxies=proxies):
if bs_search["href"].endswith(".zip"):
url_dl = url + bs_search["href"]
latest_bin = url_dl.split("/")[-1]
break
for bs_search in bs_find_all(url,"h3",user_agent=user_agent, proxies=proxies):
if "Download version" in bs_search.text:
version = bs_search.text.split(" ")[-1].strip(":")
break
print("Latest %s version is: %s" % (app_name, version))
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Changing version of the package
control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
# Deleting outdated binaries
remove_outdated_binaries(version)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8050250fdaacea053706e3c1bde7b7545ee1445d2f69fee1135e923e4384b20a : WAPT/control
170b563803fd6567e6b65eb9b34e8ea049654848f91ac966d5112131fcaf4adf : WAPT/icon.png
fe59841bf8de58be68211f59697dc4d9e732591629f8dbc76c7d8fff7565cdae : luti.json
52f81ee4778070d6aa72d8719a1a68fea2f288005deb02667542754f747776f8 : resource_hacker.zip
a5b66a54d62af7464e0b5629807d9419cb692fe20332c17d233761d75709d832 : setup.py
0b274f5446019b3ab52d0562fbdb23056c880dec8ffadadd5c62f200ed9e941a : update_package.py