tis-ie11 icon

Ie 11

Silent install package for Ie 11

11.00.9600.16428-14

  • package: tis-ie11
  • name: Ie 11
  • version: 11.00.9600.16428-14
  • categories: Internet
  • maintainer: WAPT Team,Tranquil IT,Morgan HINESTROSA,Pierre COSSON,Gaëtan SEGAT
  • target_os: windows
  • architecture: x86
  • signature_date:
  • size: 29.37 Mo

package           : tis-ie11
version           : 11.00.9600.16428-14
architecture      : x86
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      : dc2f8c60-da16-4306-9f3c-766ecafa9b5c
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         : P/rxc+HHG5Kwx81YF+3ho6+DVXIFQqE28Q8nwhwJ7tmkZLMgwY1r47ikNufrZ6XcMmj0cG0BDvwWwZTToxjUd1uKbo3Pwyv3kdAtOPyXIfe/4OgxJQAVxHet5Gpho3D2aP/m2YGmm71Q952NMaulSYG76Ws3OR9SIlLYzFcAXV1PQ27lCvtv5wy5lxALqqiyUrvAtdfur56qTE7yc6btzdiGxAOo1Bt+Q8UFbHPO9yeUCDp/7Kql/J8xLMQaaJPQZAQDoPhipC/yUJaU+dY4kjyN67yeg3zmSZ68zChq+HkOigj2Ev5vO0HnG0F9EpHWc7XcG6O4xLXnQCFiDfQgww==
signature_date    : 2022-08-22T20:00:29.009618
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/9/2/F/92FC119C-3BCD-476C-B425-038A39625558/IE11-Windows6.1-x86-en-us.exe"
    latest_bin = "IE11-Windows6.1-x86-en-us.exe"
    sha256 = "f0e86fe049a980b9683cbdbbc48cb2eac8d749fac0f0246cddcaf3b7946da81d"

    # 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
498048cb02792008ec7b4332340411002e7ef771783aa3621fd1ab2c78fc50b6 : update_package.py
f0e86fe049a980b9683cbdbbc48cb2eac8d749fac0f0246cddcaf3b7946da81d : IE11-Windows6.1-x86-en-us.exe
2a3c06a0b253eba3ed4ea2d089f758225604fb4e45dd292f2a8f304621d72e29 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
ea884726213f38a839ce4888f8e5488db4a83fe3b135a6c99433ba43f387fba4 : WAPT/changelog.txt
7648be0540a7e779e997535b8b5c5e23a53a21be15238ccbdfd37afe609f2cc5 : luti.json
1d4cbe890dca91364fc14d8fd89ef5d502af21e8d7e3bf15ea380ae16b60ed8a : WAPT/control

11.00.9600.16428
===
Split update package