- package: tis-ie11
- name: Ie 11
- version: 11.00.9600.16428-15
- categories: Internet
- maintainer: WAPT Team,Tranquil IT,Morgan HINESTROSA,Pierre COSSON,Gaëtan SEGAT
- target_os: windows
- architecture: x64
- signature_date:
- size: 55.52 Mo
package : tis-ie11
version : 11.00.9600.16428-15
architecture : x64
section : base
priority : optional
name : Ie 11
categories : Internet
maintainer : WAPT Team,Tranquil IT,Morgan HINESTROSA,Pierre COSSON,Gaëtan SEGAT
description : Internet Explorer 11 for Windows 7
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.0
sources :
installed_size :
impacted_process :
description_fr : Internet Explorer 11 pour Windows 7
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : 34fc23eb-f63f-4de3-8ec1-3917c301014b
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version : 6.2.9200
icon_sha256sum : 2a3c06a0b253eba3ed4ea2d089f758225604fb4e45dd292f2a8f304621d72e29
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : NAqCZg4eyAxao6QrD1KDb2uPKFMY98E85YX95XlsM6ZQIV8vawZZRDgPBUsHvf66HAkRPHIIalADvzSTzQsL9p/HQ67Yc2BCTove6QQZpCYM4XRNHaAXHNHMwRX/8nryjVHo93ae36MQf1xJPR8MVJhRSK5cK+/Lm4o+yQH7epvoIHBR2EfgqzRT1benrvzdDMwEHtcLIEIPIcBNtWU7oZ433nL491IeLxCiJCaDh7KqW4rs01zRpQrBJSRthCVDPu1ehFouuYyX80aybL8yw6bWOitLMzVx2WWJSskMEgdNIhaIMgpyEMHdyy467oOioUNXlgPTyl9pF43BiGAORA==
signature_date : 2022-08-22T20:01:51.181537
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
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
This package checks the installed version of Internet Explorer.
If it is more recent, the installation ends.
"""
def install():
# Declaring local variables
bin_name = glob.glob("IE11*.exe")[0]
package_version = control.get_software_version()
ie_key_values = reg_openkey_noredir(HKEY_LOCAL_MACHINE, "Software\Microsoft\Internet Explorer")
ie_installed_version = Version(reg_getvalue(ie_key_values, "svcVersion"))
if ie_installed_version > package_version:
print("More recent version of Internet Explorer is installed on your computer")
return "OK"
# Installing the package
install_exe_if_needed(
bin_name,
silentflags="/quiet /no-default /norestart",
)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_url = "http://download.microsoft.com/download/7/1/7/7179A150-F2D2-4502-9D70-4B59EA148EAA/IE11-Windows6.1-x64-en-us.exe"
latest_bin = "IE11-Windows6.1-x64-en-us.exe"
sha256 = "559eafe456e5d29b19cd3a9d6be7c77f3f576a484434bd5b2aa5b6188aaa00b2"
# Downloading latest binaries
wget(download_url, latest_bin, sha256=sha256)
# Checking version from file
version = get_version_from_binary(latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
control.save_control_to_wapt()
# Validating update-package-sources
return result
2b97965777cdc454e0e1801a2b95c493981a33c7f94b124be755734e609d6474 : setup.py
1390e22b5cd5ebd0244abb249d3a4f17a45d79a8c1deab37abc06d6ed602d145 : update_package.py
559eafe456e5d29b19cd3a9d6be7c77f3f576a484434bd5b2aa5b6188aaa00b2 : IE11-Windows6.1-x64-en-us.exe
2a3c06a0b253eba3ed4ea2d089f758225604fb4e45dd292f2a8f304621d72e29 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
ea884726213f38a839ce4888f8e5488db4a83fe3b135a6c99433ba43f387fba4 : WAPT/changelog.txt
e35471331b3e2754c73627d2c5670a0bf7c7c6a339e91469e67342ace1bf66c9 : luti.json
ee85c7311594955b7a0f0726fa329b370721094754b992e9a4c3fc8495db161c : WAPT/control
11.00.9600.16428
===
Split update package