tis-microsoft-edge icon

Microsoft Edge

Paquet d’installation silencieuse pour Microsoft Edge

142.0.3595.94-43
Internet
Internet

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-microsoft-edge
  • name: Microsoft Edge
  • version: 142.0.3595.94-43
  • categories: Internet
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Microsoft
  • licence: proprietary_free,wapt_public
  • locale: all
  • target_os: redhat_based
  • impacted_process: msedge,MicrosoftEdgeUpdate
  • architecture: x64
  • signature_date:
  • size: 182.16 Mo
  • installed_size: 972.65 Mo
  • homepage : https://www.microsoft.com/edge/

package           : tis-microsoft-edge
version           : 142.0.3595.94-43
architecture      : x64
section           : base
priority          : optional
name              : Microsoft Edge
categories        : Internet
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Microsoft Edge is a cross-platform web browser created and developed by Microsoft
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : redhat_based
min_wapt_version  : 2.1
sources           : https://www.microsoft.com/edge/business/download
installed_size    : 972651014
impacted_process  : msedge,MicrosoftEdgeUpdate
description_fr    : Microsoft Edge est un navigateur web multiplateforme créé et développé par Microsoft
description_pl    : Microsoft Edge to wieloplatformowa przeglądarka internetowa stworzona i rozwijana przez firmę Microsoft
description_de    : Microsoft Edge ist ein plattformübergreifender Webbrowser, der von Microsoft entwickelt wurde
description_es    : Microsoft Edge es un navegador web multiplataforma creado y desarrollado por Microsoft
description_pt    : Microsoft Edge é um navegador web multiplataforma criado e desenvolvido pela Microsoft
description_it    : Microsoft Edge è un browser web multipiattaforma creato e sviluppato da Microsoft
description_nl    : Microsoft Edge is een cross-platform webbrowser gemaakt en ontwikkeld door Microsoft
description_ru    : Microsoft Edge - это кросс-платформенный веб-браузер, созданный и разработанный компанией Microsoft
audit_schedule    : 
editor            : Microsoft
keywords          : microsoft,edge,web,browser
licence           : proprietary_free,wapt_public
homepage          : https://www.microsoft.com/edge/
package_uuid      : cad3c047-762a-4401-995e-76cd2c92bd9f
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://docs.microsoft.com/deployedge/microsoft-edge-relnote-stable-channel
min_os_version    : 8
max_os_version    : 
icon_sha256sum    : a7c6b09372ea7c19abbbf1e40c70610177a814692ce9d17a0096bfae2f4437c0
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-21T12:34:39.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         : MteXV6UEqU00kvHbJ0i9YueOvHd2BpxYQ1r1LfZaRGeoI6K++I94fz6WBNn1exfoM1v56Qvg/aCpN8b7+R0/i5zN9KVWroTBsQDqp/HC8/hQbJi7cs1b96lxCWiypTJIa3fZkG6Y1wLV8qJp2RyxpyYLSRtDDfaS14s4ea4l982New5RAtupfwPmErXh2653SRAjGJ6NAwwdmN43FY4ggT/yaGgdLFbDYmyKdR/+lVL8Pp4MiMGrwJ0PPf9f8gWGOc8Tx4QCxJkTkV+EvTUYuBtPb/OFY3ocRtKdC3vommQBhu1nu1e7uITuNiDF2FApr6yJpITe3uvyr8wmkLmoQA==

# -*- coding: utf-8 -*-
from setuphelpers import *

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
package_name = "microsoft-edge-stable"


def install():
    # Declaring local variables
    bin_name = glob.glob("*microsoft-edge-stable-*.rpm")[0]

    # Installing the software
    install_yum(bin_name)


def uninstall():
    # Uninstalling the software
    uninstall_yum(package_name)

# -*- coding: utf-8 -*-
from setuphelpers import *
import requests


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    download_url = "https://go.microsoft.com/fwlink?linkid=2149137"

    # Getting latest version information from download url
    latest_bin = requests.head(download_url, allow_redirects=True).url.split("/")[-1]
    version = latest_bin.split("-")[3]

    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % 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.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return result

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
315df7b8cbbd0f00c3bd7874c339d610ca740c76fa46ba681b3b14f87fe79df9 : WAPT/changelog.txt
e6c89cb68e3ad31d42b1792a5aa76f5b96ce4ec8684c6faaa3d9a746b984ef24 : WAPT/control
a7c6b09372ea7c19abbbf1e40c70610177a814692ce9d17a0096bfae2f4437c0 : WAPT/icon.png
1638d74d9d1238a08e27c4e4e8c2f3baa06cbe78fb9f6e353c7abca8a622485d : luti.json
46c5f918c982805a2d2d748dbef2f0d539ebf067669d1cf7dce4249f8a1536c9 : microsoft-edge-stable-142.0.3595.94-1.x86_64.rpm
bbe2b21194945c9eb7628027b20f1d1b7e9eb10f34a57468c0a0d8a4617893e7 : setup.py
79ea9dfe90856e262fbfc15447ad440a0f40c91f8965175f8da71fc1acd98324 : update_package.py

https://docs.microsoft.com/deployedge/microsoft-edge-relnote-stable-channel
103.0.1264.44-35

No longer removing Microsoft EdgeWebView since it can break some other apps
No longer deny updates and installs on a specific key
min_wapt_version  : 2.1


101.0.1210.53-33

Updating installed_size and impacted_process
Now auditing manually
Registry cleaning as fail over
Now removing Microsoft EdgeWebView
Package cleanup improved, fixed the package upgrade on W11
min_wapt_version  : 2.0