tis-dotnetfx4.8-sdk icon

.NET Framework 4.8 - SDK

Silent install package for .NET Framework 4.8 - SDK

4.8.9256.5-2
System and network
System and network

  • package: tis-dotnetfx4.8-sdk
  • name: .NET Framework 4.8 - SDK
  • version: 4.8.9256.5-2
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
  • editor: Microsoft
  • licence: proprietary_free
  • locale: all
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 103.27 Mo
  • installed_size: 708.57 Mo
  • homepage : https://dotnet.microsoft.com/

package           : tis-dotnetfx4.8-sdk
version           : 4.8.9256.5-2
architecture      : all
section           : base
priority          : optional
name              : .NET Framework 4.8 - SDK
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Joffrey Le Piquet
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      : 6bae98a2-3ec9-42d9-8dd6-df60dd77789a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0.19042
max_os_version    : 
icon_sha256sum    : bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-02-02T12:23:59.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         : c9U/6eV43ynARyEFLT1efJ+lF6TjawK3HytMsZkMt0IU0Wdk0wGMeCTjNBd6lKltXMe3cNxgG6XJkEPlgJ1Lve2ffFb5AtW1JX+8rg8ylsfBCqLLqzpNy1fuhmKqNE7Sh06eGI0SrG1yKTgJkEE/s9XMJBJ4wegStnI2TVe8Q8PSQZItMZDFutGhxTSBY4t5ZDsvbdsv0Cef9nJAysAGcpSjZlkqlsJ/h6f4WJDP2cke14Zo7MKqjOoj3xwNzwPUjdbM4/G5cwtHeqPTwjZRtgIy0wQHbomZBJH9r3ImU1WZXeu/d0/Yh5SvfRCER2X5Ri+O3rA7Q9c1LZYuDSbCpA==

# -*- 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-DevPack-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=2203306"
    latest_bin = "NDP481-DevPack-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

fd9ae4b63cbc8f7637249c4b29d25281b1f70fbe6d650109dcbf2bdf596cf994 : NDP481-DevPack-ENU.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
437c577f351cadd9a25049ce69ec725def83c235af7cd2ca1f53eb8b47f21f67 : WAPT/changelog.txt
d5d20b474ac2381fb7d141cebb54982b2163ff06c8f240ff3d4a858b48066b13 : WAPT/control
bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8 : WAPT/icon.png
b8335e1e11c6c2fe9b16fc6add0de02fb7123f516fe79da54836c30e6c1ddb56 : luti.json
e9ffaf0509df26ac82f0adf98d075699f41adbfdc20e341bfc71599c5617c926 : setup.py
24e12cc0588bb577931bd62814a8ea7bdd57541e42c590d0c9ad0d99dedfefbe : update_package.py

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)