tis-dotnetfx4.8 icon

.NET Framework 4.8

Paquet d’installation silencieuse pour .NET Framework 4.8

4.8.4115.0-30
System and network
System and network

  • package: tis-dotnetfx4.8
  • name: .NET Framework 4.8
  • version: 4.8.4115.0-30
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Microsoft
  • licence: proprietary_free
  • locale: all
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 121.24 Mo
  • installed_size: 708.57 Mo
  • homepage : https://dotnet.microsoft.com/

package           : tis-dotnetfx4.8
version           : 4.8.4115.0-30
architecture      : all
section           : base
priority          : optional
name              : .NET Framework 4.8
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : (Cumulative version of .NET Framework 4.5+) .NET Framework (pronounced as "dot net") is a software framework developed by Microsoft that runs primarily on Microsoft Windows
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.1
sources           : https://dotnet.microsoft.com/download/dotnet-framework
installed_size    : 708567040
impacted_process  : 
description_fr    : (Version cumulative de .NET Framework 4.5+) Le .NET Framework est un cadriciel (framework) pouvant être utilisé par un système d'exploitation Microsoft Windows
description_pl    : (Wersja skumulowana .NET Framework 4.5+) .NET Framework (wymawiane jako "dot net") to framework oprogramowania opracowany przez firmę Microsoft, który działa głównie w systemie Microsoft Windows
description_de    : (Kumulative Version von .NET Framework 4.5+) .NET Framework (ausgesprochen wie "dot net") ist ein von Microsoft entwickeltes Software-Framework, das hauptsächlich auf Microsoft Windows läuft
description_es    : (Versión acumulativa de .NET Framework 4.5+) .NET Framework (pronunciado como "dot net") es un marco de software desarrollado por Microsoft que se ejecuta principalmente en Microsoft Windows
description_pt    : (Versão cumulativa do .NET Framework 4.5+) O .NET Framework (pronunciado como "dot net") é uma estrutura de software desenvolvida pela Microsoft que é executada principalmente no Microsoft Windows
description_it    : (Versione cumulativa di .NET Framework 4.5+) .NET Framework (pronunciato come "dot net") è un framework software sviluppato da Microsoft, che viene eseguito principalmente su Microsoft Windows
description_nl    : (Cumulatieve versie van .NET Framework 4.5+) .NET Framework (uitgesproken als "dot net") is een door Microsoft ontwikkeld softwarekader dat voornamelijk draait op Microsoft Windows
description_ru    : (Кумулятивная версия .NET Framework 4.5+) .NET Framework (произносится как "dot net") - это программная среда, разработанная компанией Microsoft, которая работает в основном под управлением Microsoft Windows
audit_schedule    : 
editor            : Microsoft
keywords          : dot,net,framework,4,4.5,4.8,4.8.1
licence           : proprietary_free
homepage          : https://dotnet.microsoft.com/
package_uuid      : 122ed646-7c04-4eb9-b912-c23523be02f0
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 6.1
max_os_version    : 10.0.18362
icon_sha256sum    : bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : RmCu7yTlcRn7opwFQwIG1bDN2nCUXCJxFqpETdtCm0qXl6TaQVNgdIb27eS4hPRgJq5MV7a6h36w2vtQFjgkpWaeyo/YvRlVXnz6ejb2b7E4uVuOG1CD/HsaofUTHnqrK1RRXw53FZbrdLcJDRoE3iRUCF7xoYxAgVPbITBlTk2TdTuJezFcyrgocekglfebh6lUobv0lGhDxNxNYBsLaRtBN6WQZfQA1exSgsbDjGG17Kd79DMA3XQthqT/In8DT3ntnGVVjSe5exfAbd0pFh35i2RW2Acrjy245whalqSTLHyz9O6kEUFgtZ6BvdmfnPf6RW8ysffuIVRDTv9Aqg==
signature_date    : 2023-05-07T14:10:32.980699
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 *

""" 
Sources:
https://dotnet.microsoft.com/download/dotnet-framework
https://dotnet.microsoft.com/download/dotnet-framework/net48
https://dotnet.microsoft.com/download/thank-you/net48-offline

"""

# Defining variables
bin_name = "ndp48-x86-x64-allos-enu.exe"
silent_inst_args = "/q /norestart"


def install():
    # Initializing variables
    package_version = control.get_software_version()

    # Getting actual .NET Framework 4.8 version installed
    try:
        installed_version = registry_readstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full", "Version")
        print("Actual installed .NET Framework 4.8 version is " + installed_version)
    except:
        print(".NET Framework 4.8 is not currently installed")
        installed_version = "0"

    # Compare installed version on 3 level
    if Version(installed_version, 3) >= Version(package_version, 3):
        print(".NET Framework 4.8 is up-to-date")
    else:
        # Installing the package
        install_exe_if_needed(
            bin_name,
            silentflags=silent_inst_args,
            timeout=1000,
        )

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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    download_url = "https://go.microsoft.com/fwlink/?linkid=2088631"
    latest_bin = "ndp48-x86-x64-allos-enu.exe"

    # Deleting binaries
    for f in glob.glob("*.exe") + glob.glob("*.msi"):
        print("Removing: %s" % f)
        remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % download_url)
    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
    version = get_version_from_binary(latest_bin)
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return package_updated

55b33c3708181ac10541fcea3f6dc6e882805131e152fbdd60772443397180e0 : setup.py
662113f3196d2fce3111ddf4299a1766ca44c05c8f9a38e56e37de7e4fb5d4af : update_package.py
bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
437c577f351cadd9a25049ce69ec725def83c235af7cd2ca1f53eb8b47f21f67 : WAPT/changelog.txt
68c9986a8dcc0214d909aa1f31bee9fb5461bb839edca996a75b08ddffc1483f : ndp48-x86-x64-allos-enu.exe
d0d0983543a2d562f8c2c32872343f7725cb9db179114c804045dccea95639c9 : luti.json
3baf235025b7af0cf930512bc0cd4a45f857dc78574d189ac344775537aebfdd : WAPT/control

4.8-30
===
split package for .NET Framework 4.8/4.8.1
now update to newer version if needed (based on 3 members_count instead of 2)
remove will no longer try to uninstall
timeout=1000
min_os_version/max_os_version -> 10.0.18362 for 4.8/4.8.1 (https://learn.microsoft.com/dotnet/framework/migration-guide/versions-and-dependencies#net-framework-481)