.NET Framework 4.8
Silent install package for .NET Framework 4.8
4.8.9037.6-30
System and network
System and network
- package: tis-dotnetfx4.8
- name: .NET Framework 4.8
- version: 4.8.9037.6-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: 63.54 Mo
- installed_size: 708.57 Mo
- homepage : https://dotnet.microsoft.com/
package : tis-dotnetfx4.8
version : 4.8.9037.6-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 : 81071266-5a10-4d75-b900-d5a9c0c75002
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 : pLjbUH6dkep3ioxK+Fp1OaxUMHFy5u5lR6K0GG1vqH7DX2Q6XWKFs82SOm28b+37+gnE0V2BaBdoUupJkKhRWHP5COVptUVgtzboeo+6qrHIQ+T9laE1SKrWSlAUFdEHX4+scfyIX2wTkqsbLgdAAzixzzvGW0WBXla70A1Eyecx3FYAHnhLwm8mAr/gxYSirbdETzFT1JGvlfEuP9veyI96oFejFqNGq5RY1Pc2p4orulyvFpHkxqyTnjjs8gpwDZpoofqJPXc0GJHSfMwEsjE/hYL61SH5ZYD+hRvlh0ie89/QuQm2sPqzVLsMlBgCbxQlVQE7R979mWs0tJvFHQ==
signature_date : 2023-05-07T14:00:15.272729
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
859b556ee19a33353626682b8b6f7e9ce97cd325b0d8f24c7770dc31f688d3c1 : ndp481-x86-x64-allos-enu.exe
4d77bd8d3e8b4e43e38cc7486d76767c5cd6869c1ad121641202ffc8a31c454e : update_package.py
bbae5b815f1b40523fb66ba82c7a0c286270f610a60c278b33da9f158a8e4ef8 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
437c577f351cadd9a25049ce69ec725def83c235af7cd2ca1f53eb8b47f21f67 : WAPT/changelog.txt
27a1bf1f2b2c3f7f16cee98c02d3abac4585e2836b84adcbe2296d3339d0cacc : luti.json
f2fd19e9dea4bf1fc9851ab7aca1cbccd3a4eca7a0c081a0d4208d8d4c567777 : 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)