tis-msi-4.5
4.5.0-9
Windows MSI installer 4.5 XP, 2003, Vista, 7 32 et 64 bits KB942288
2726 downloads

Description
- package : tis-msi-4.5
- version : 4.5.0-9
- architecture : x86
- categories :
- maintainer : Hubert TOUVET
- description : Windows MSI installer 4.5 XP, 2003, Vista, 7 32 et 64 bits KB942288
- locale :
- target_os :
- min_wapt_version :
- sources : https://srvdev/sources/tis-msi-4.5-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:35:50.120669
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
# registry key(s) where WAPT will find how to remove the application(s)
uninstallkey = []
def install():
import platform
windows = platform.win32_ver()[0]
if not installed_softwares('KB942288'):
print('installing tis-msi-4.5')
if not iswin64():
if windows == 'XP':
run(r'"WindowsXP-KB942288-v3-x86.exe" /quiet /norestart',accept_returncodes=(0,1601,3010))
elif windows == '2003Server':
run(r'"WindowsServer2003-KB942288-v4-x86.exe" /quiet /norestart',accept_returncodes=(0,1601,3010))
elif windows in ('post2003','Vista','2008Server'):
run(r'"Windows6.0-KB942288-v2-x86.msu" /quiet /norestart',accept_returncodes=(0,1601,3010))
else:
if windows == '2003Server':
run(r'"WindowsServer2003-KB942288-v4-x64.exe" /quiet /norestart',accept_returncodes=(0,1601,3010))
elif windows in ('post2003','Vista','2008Server'):
run(r'"Windows6.0-KB942288-v2-x64.msu" /quiet /norestart',accept_returncodes=(0,1601,3010))