tis-dotnetfx4.8 icon

.NET Framework 4.8

Paquet d’installation silencieuse pour .NET Framework 4.8

4.8.9195.10-30
System and network
System and network

  • package: tis-dotnetfx4.8
  • name: .NET Framework 4.8
  • version: 4.8.9195.10-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: 77.62 Mo
  • installed_size: 708.57 Mo
  • homepage : https://dotnet.microsoft.com/

package           : tis-dotnetfx4.8
version           : 4.8.9195.10-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      : 2ea0e8a9-c66a-4c47-8a51-bc71c0a53918
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0.18362
max_os_version    : 
icon_sha256sum    : bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : B+F2npEE/OB2NA0ypDmJNcMSYKJOyYDiNQaDjVB7MkZRbo9IECRU+MhZzxBe656v6/piy8yrBND399KUwKRgRHYxcrfqyZOM0colDp0hI0HQx4TUm5fNuPICuWOaozVrP8SWV87b1ueGTnYR6b1RucMk1L8xoYyreYMp+yo+q9Bois9dsZYgq3jZF3a/cYiOzIcRmizNyBFgy9KP0OKTYZnzNhrsJcKljFN2xL4MABYb+UPfpj3PGuf23eygdOljd9B8ufjRD5dUokz3Xbg2Y8PWhkb5ugmBgpDB7SX3aEYfHyZISTISaGLkutnKujVXNrj0TlpO2BmJRfoE6YUBoQ==
signature_date    : 2024-05-15T23:01:14.395584
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/net481
https://dotnet.microsoft.com/download/thank-you/net481-offline

"""

# Defining variables
bin_name = "ndp481-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=2203305"
    latest_bin = "ndp481-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

1279bf824a3244eedb8faf0ddab47072bb4181868bb4805e2a6e0ecb280ca571 : setup.py
c0ca2e0c9cd18a24a0a77369a13fae2c2c4e8bc83355dd24e5ddc00f9d791fe3 : ndp481-x86-x64-allos-enu.exe
4d77bd8d3e8b4e43e38cc7486d76767c5cd6869c1ad121641202ffc8a31c454e : update_package.py
bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
437c577f351cadd9a25049ce69ec725def83c235af7cd2ca1f53eb8b47f21f67 : WAPT/changelog.txt
34b1bb64bb6cdad721f6bca93f6efb46e4f952577a218383a13e3806b2fc30e4 : luti.json
249f87980b708de554a45b304ca3ae17de1e40915fdfb192a7458896ebf5b7dd : 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)