Minitool Partition Wizard Free
Silent install package for Minitool Partition Wizard Free
13.9-3
System and network
System and network
- package: tis-minitool-partition-wizard-free
- name: Minitool Partition Wizard Free
- version: 13.9-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: x86
- signature_date:
- size: 40.28 Mo
- installed_size: 83.30 Mo
package : tis-minitool-partition-wizard-free
version : 13.9-3
architecture : x86
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 : 937efac7-06ca-414b-8def-7c793d3b0b93
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 : 2026-07-12T08:00:29.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 : qvca66H/Dh1HOQEzcl1MWEVO0I2qChQtH/TSw3qPst+lpssL+UllWW7Mf/zZMyF0Hp4am63jrIP16RtUTmXwtPq3N79xjSDGXV4mBvHDHiLcWVUYIURjVMTMom7PGhJ1I12UtJ3VQHx7pcVzp5sxcGH8WFVQIWaJOhf35Yi36UsYtGUXd3IwAMlbAD1hZs+6BcaGmfnKzCs9Jq4EXqSvNngKVrjoxtC1qZ4Ixrhaf4v77hOz8OY3ICKCFYMtS3wJarrHO0HlqDi0IM/QG3tmbfJLM47bFPNgL+neFY+NXtnXZy1YSym3b5dCYfFkiVKYz9+m0pY4orIAVvDr3FAvYg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("pwfree-*online.exe")[0]
#Uninstalling older versions of the software that can remain
for to_uninstall in installed_softwares(name="MiniTool Partition Wizard Free"):
if Version(to_uninstall["version"]) < Version(control.get_software_version()):
print(f"Removing: {to_uninstall['name']} ({to_uninstall['version']})")
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
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
151030766c11e98829a5e4b9485519c9abcf3a38877219fd9fc9206d2c3133f6 : WAPT/control
7fb683f24c4363b29f3aed09691d6538a7b0ed25ab4a890e34e94ac40404364e : WAPT/icon.png
2956a364d6369f5efa12ac3062ab2f7e1e7ca92459ef5f2992bfa0ff9006d318 : luti.json
1e168bb2dc6a33e8db3c84a731816270ecdd0be8ff241c22a1fc389b097d8d70 : pwfree-32bit-online.exe
55a9ee4193e0ea2a5deeff4db75d5064c5cb6437bd3bd05cafeece5e06f50890 : setup.py
c321c6285f352947be5c883ebe34218ca911bf369cc372e04938186d308686d3 : update_package.py