tis-microsoft-edge icon

Microsoft Edge

Silent install package for Microsoft Edge

135.0.3179.73-43

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

package           : tis-microsoft-edge
version           : 135.0.3179.73-43
architecture      : all
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         : macos
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      : ea1871c8-9624-4da0-9cdb-b75d09c73ca8
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://docs.microsoft.com/deployedge/microsoft-edge-relnote-stable-channel
min_os_version    : 11
max_os_version    : 
icon_sha256sum    : a7c6b09372ea7c19abbbf1e40c70610177a814692ce9d17a0096bfae2f4437c0
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-04-12T03:25:52.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         : PFvWA3NIcgWW5Wq0la50Ht3chOy6wZctJeXNSS1+roUvwUL4QhHfWUggKnW8l//CAs0H1mbuD2oI3GKnybdF8DAQakqxWy/G+liwnIRKNLkJHqqbb2q67rbyMq4nQyae+oOIsjrFvRHPMyzClmjvNvTWXUvTVKaXw+fnJPF8dI/mnyUf1oMnQ3u8ZPzsudUMCnyZucgM8GRm8uyWC7wKen7meq1X8YPa9JNqi6dHZ6hPVdB5vs835ZH3MM6tG0gD1hZIzdQk8VWp5iq9CkFGcUt1ORj9BnaDL6099ZIZeBdzgE2qL4H7iiYsCNDTVm/HvSeHv/6DB1002gnZjv2DcA==

# -*- 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
app_name = "Microsoft Edge"


def install():
    # Declaring local variables
    bin_name = glob.glob("*MicrosoftEdge-*.pkg")[0]

    # Installing the software
    install_pkg(bin_name)


def uninstall():
    # Uninstalling the software
    uninstall_app(app_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=2093504&platform=Mac&Consent=0&channel=Stable" # arm
    # download_url = "https://go.microsoft.com/fwlink/?linkid=2069148&platform=Mac&Consent=0&channel=Stable"  # intel
    download_url = "https://go.microsoft.com/fwlink/?linkid=2069148"  # intel

    # Getting latest version information from download url
    latest_bin = requests.head(download_url, allow_redirects=True).url.split("/")[-1]
    version = latest_bin.rsplit("-", 1)[-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)
    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

1e9464d04c48bfb090a70c87e022ede0375f51acd225871b54fb5cc472703867 : MicrosoftEdge-135.0.3179.73.pkg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
315df7b8cbbd0f00c3bd7874c339d610ca740c76fa46ba681b3b14f87fe79df9 : WAPT/changelog.txt
f0ddba44c9a1e594900af00714c149585b6eb52b3da02e12f1625cf292b7eaaa : WAPT/control
a7c6b09372ea7c19abbbf1e40c70610177a814692ce9d17a0096bfae2f4437c0 : WAPT/icon.png
7001e4e1979efb316b51cfadc7a95c830b294eddad4069d6cda1c7858988b499 : luti.json
903a288e7971264fe7c461bc648d35643da43046b932db36fea47f27e5ae882c : setup.py
f63ae4c5bc645690d177de190e7106ca01ec72acbe251fb233717d44ec76a2e7 : 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