Minitool Partition Wizard Free
Silent install package for Minitool Partition Wizard Free
13-3
System and network
System and network
- package: tis-minitool-partition-wizard-free
- name: Minitool Partition Wizard Free
- version: 13-3
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: MiniTool Software Limited
- licence: proprietary_free,wapt_public
- locale: all
- target_os: windows
- impacted_process: partitionwizard
- architecture: x64
- signature_date:
- size: 68.46 Mo
- installed_size: 83.30 Mo
package : tis-minitool-partition-wizard-free
version : 13-3
architecture : x64
section : base
priority : optional
name : Minitool Partition Wizard Free
categories : System and network
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : MiniTool Partition Wizard is a comprehensive partition management solution that can manage partitions and disks
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 83302249
impacted_process : partitionwizard
description_fr : MiniTool Partition Wizard est une solution complète de gestion de partitions qui permet de gérer les partitions et les disques
description_pl : MiniTool Partition Wizard to kompleksowe rozwiązanie do zarządzania partycjami, które może zarządzać partycjami i dyskami
description_de : MiniTool Partition Wizard ist eine umfassende Partitionsverwaltungslösung, die Partitionen und Festplatten verwalten kann
description_es : MiniTool Partition Wizard es una completa solución de gestión de particiones que puede gestionar particiones y discos
description_pt : O MiniTool Partition Wizard é uma solução abrangente de gerenciamento de partições que pode gerenciar partições e discos
description_it : MiniTool Partition Wizard è una soluzione completa per la gestione delle partizioni in grado di gestire partizioni e dischi
description_nl : MiniTool Partition Wizard is een uitgebreide oplossing voor partitiebeheer die partities en schijven kan beheren
description_ru : MiniTool Partition Wizard - это комплексное решение для управления разделами, которое позволяет управлять разделами и дисками
audit_schedule :
editor : MiniTool Software Limited
keywords : partition,disk
licence : proprietary_free,wapt_public
homepage :
package_uuid : 0d7e0cb1-f831-49b4-8731-d91179b68a9f
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : 7fb683f24c4363b29f3aed09691d6538a7b0ed25ab4a890e34e94ac40404364e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-24T14:01:59.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 : Cm16Swu/+K4M9jompAD4VWEui0vrv+Hwntcu+oDr27FDDnpUjcp/02fb5SZXewYojRo4Nj82rGMdD9PYXbvzKrUtMM/EEfu5vZBRb1GmRKCy2zhAXYJaFnT1Y+/K1EeGL9fjaOrh3F+VY35sihs8Jt75cNHXI/PK9Wyov8abCNy1ykQ5Pw2D3uFV20ZSQA20XINhAgDTR+QiVVFZMICJC0e5k+KGhVuczK7hMJOfsMyebFXo5X1CW6bcE83kflVxSUI+T9uXB/L7eKkcTMNdwDw2ueFCmRBI5RP77l+lActDwxGD6RYCkk4DBK226oCyIaWF+pCXkr/xR40o1YrdTA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("pwfree-*online.exe")[0]
install_exe_if_needed(
bin_name, silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-",
key = "{05D996FA-ADCB-4D23-BA3C-A7C184A8FAC6}_is1",
min_version=control.get_software_version()
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import waptlicences
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
base_url = "https://cdn2.minitool.com/download-center/release/products/pw/current-release"
update_dict = {
"windows-x64": f"{base_url}/pwfree-64bit-online.exe",
"windows-x86": f"{base_url}/pwfree-32bit-online.exe"
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
download_url = update_dict[os_type]
latest_bin = download_url.rsplit('/', 1)[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# Downloading latest binaries
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, target=latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
version = get_version_from_binary(latest_bin)
print(f"Latest {app_name} version is: {version}")
expected_issuer = "MiniTool Software Limited"
sign_name = waptlicences.check_exe_signing_certificate(latest_bin)[0]
if sign_name != expected_issuer:
error(f'Bad issuer {sign_name} != {expected_issuer} ')
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9e5e16b715a81eb11a8e7927f2adada555d5b483c7bbc1e94d12ba33ae09f65a : WAPT/control
7fb683f24c4363b29f3aed09691d6538a7b0ed25ab4a890e34e94ac40404364e : WAPT/icon.png
980ce95402bcf00892b6f9b409932a5172da9b65db4f2270661717432ec3db6c : luti.json
427a9a9d343381abdea2a03ea8b70954e4a7c911859ae2c34e6043bc8ba25a79 : pwfree-64bit-online.exe
f328f0a2354b7b1cd38c67f1bd092e2ed201b05ff67c8036d2b307aa20b74f4f : setup.py
c321c6285f352947be5c883ebe34218ca911bf369cc372e04938186d308686d3 : update_package.py