tis-microsoft-edge icon

Microsoft Edge

Silent install package for Microsoft Edge

116.0.1938.76-36

  • package: tis-microsoft-edge
  • name: Microsoft Edge
  • version: 116.0.1938.76-36
  • categories: Internet
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Microsoft
  • licence: Proprietary
  • locale: all
  • target_os: debian(>9),ubuntu
  • impacted_process: msedge,msedge_proxy,msedgewebview2,msedge_proxy,msedge_pwa_launcher,msedgewebview2,msedge_proxy,msedge_pwa_launcher
  • architecture: x64
  • signature_date:
  • size: 151.48 Mo
  • installed_size: 1.20 Go
  • homepage : https://www.microsoft.com/edge/

package           : tis-microsoft-edge
version           : 116.0.1938.76-36
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          : PROD
locale            : all
target_os         : debian(>9),ubuntu
min_wapt_version  : 2.1
sources           : https://www.microsoft.com/edge/business/download
installed_size    : 1196867584
impacted_process  : msedge,msedge_proxy,msedgewebview2,msedge_proxy,msedge_pwa_launcher,msedgewebview2,msedge_proxy,msedge_pwa_launcher
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
homepage          : https://www.microsoft.com/edge/
package_uuid      : ca6f03a1-f1db-4df3-9c50-295d1e28ffa1
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://docs.microsoft.com/deployedge/microsoft-edge-relnote-stable-channel
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : a7c6b09372ea7c19abbbf1e40c70610177a814692ce9d17a0096bfae2f4437c0
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : lKro3EUEK7eAXiUexk2qlvMG/surjmPTOhwxNBbK0c8HED4w7ZgezVaLoO6/0VXHhrdZU9FM3cgCsYr9Z4CvcsUaHhFqz+0tK2Lh2mZv5qDQo/rIQ8iseATlqt41aeohIrIaRuwe9ueEorRDTCPM0kGuLpOcox5oCrbMf+zCF8tLgFzDLjX/oSeHN/jdCgzmndpGGyA4HoCCnC9AE7jhOAE/uChqT2tAbHR8Rj6AfZTqfWp5mrg2u9QHKk+CQvlYnTTyephOrRT7CJqs1ltrxcPj3yyrh0xakSulWGkBx3nLaN6WI5J2fAEmFyqZI4p78lwWSr7Z9p7VfHOgpWubtQ==
signature_date    : 2023-09-08T19:02:59.723658
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 *

# 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_*.deb")[0]
    # Installing the software
    install_deb(bin_name)


def uninstall():
    # Uninstalling the software
    uninstall_apt(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=2149051"

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

    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)

    # 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

8b9cd586e5e4bfa44a3a13c88be2f0fd78200f26f0be03905dcf9dd853e874aa : setup.py
a187387711421f4e46f7a0b339ed9f594ac7420b54841d2f1a6d137d63ac2c4a : update_package.py
cd29cd827a6cc51dac460a06f958b62b771a69550f2e2249f5df848e3233bbb6 : microsoft-edge-stable_116.0.1938.76-1_amd64.deb
a7c6b09372ea7c19abbbf1e40c70610177a814692ce9d17a0096bfae2f4437c0 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
315df7b8cbbd0f00c3bd7874c339d610ca740c76fa46ba681b3b14f87fe79df9 : WAPT/changelog.txt
b0e40600cfd114b0c78ded279341817035a437bb7bab2d89c43e07498ab525e9 : luti.json
a505f6ab26e4c9dbce65cf8f605e598a6ced4ae08fca5458b0c65a278277b761 : WAPT/control

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