
Description
- package : tis-adwcleaner
- version : 4.2.0.1-3
- architecture : all
- categories :
- maintainer : Hubert TOUVET
- description : automatic package for adwcleaner_4.201
- locale :
- target_os :
- min_wapt_version :
- sources : https://srvdev/sources/tis-adwcleaner-wapt/trunk
- installed_size :
- impacted_process :
- description_fr :
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor :
- licence :
- signature_date : 2020-02-27T21:28:25.112570
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
# registry key(s) where WAPT will find how to remove the application(s)
uninstallkey = []
destdir = makepath(programfiles32,'adwcleaner')
def install():
print('installing tis-adwcleaner')
killalltasks('adwcleaner.exe')
mkdirs(destdir)
filecopyto('adwcleaner_4.201.exe',makepath(destdir,'adwcleaner.exe'))
create_programs_menu_shortcut('ADW Cleaner',makepath(destdir,'adwcleaner.exe'))
def uninstall():
killalltasks('adwcleaner.exe')
if isdir(destdir):
remove_tree(destdir)
remove_programs_menu_shortcut('ADW Clenaer')