tis-kb5053598 icon

Cumulative update March for W11 24H2

Silent install package for Cumulative update March for W11 24H2

1-2

  • package: tis-kb5053598
  • name: Cumulative update March for W11 24H2
  • version: 1-2
  • categories: Security,System and network
  • maintainer: WAPT Team,Tranquil IT,Joffrey Le Piquet
  • editor: Microsoft
  • locale: all
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 1.23 Go

package           : tis-kb5053598
version           : 1-2
architecture      : x64
section           : base
priority          : optional
name              : Cumulative update March for W11 24H2
categories        : Security,System and network
maintainer        : WAPT Team,Tranquil IT,Joffrey Le Piquet
description       : 
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : 
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : Microsoft
keywords          : 
licence           : 
homepage          : 
package_uuid      : fadece9f-6b55-43d8-8b72-5d5607a51ae3
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0.26100
max_os_version    : 
icon_sha256sum    : 50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-03-21T16:06:11.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         : GJZN1VZyVVyAtQpEGEg0zyo3/YA7Hq210Rh1/iQ9/0xgFkGM2AHTOMQ/kry2L/DZQu+toeDn0SBQL1wCS/KGCNsxJu3U4mCns0pnlEyYfZC/KlDyz9GLQ/ep8glR5goiuBNl6DY2WRNECzqt6VMAL+rB7mDR/K5KLAmhX1I8m9Oe+hQZYsZ/9tZodCjdpvSIiClQ+b/3D/knoChYDCJBGeoUCaXuR8Phb4nkUAK4t/ZEE7NAwVjwYRcq3QvYuwkKWm07Is+kSBbw5YVIXEcxzb4hQloODnIwa5mV0uweP0WkWDlZyxKNhgbvQY0ub/vKhOsE0tY54XgmGuMc15vtFQ==

from setuphelpers import *
import re

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
# https://support.microsoft.com/en-us/topic/-operation-is-not-supported-error-installing-a-post-checkpoint-update-by-double-clicking-the-msu-package-86b89ef4-d5d3-4a2d-b471-3d67c8ea4f0e

def install():

    with EnsureWUAUServRunning():
        kb_dir = makepath(basedir,"KB")
        kb_file = "windows11.0-kb5053598-x64_6cb3ffc5c4d652793dc71705248426eecdacdfd0.msu"
        kb_source = makepath(kb_dir,kb_file)

        kb_guess = re.findall(r'^.*-(KB.*)-',kb_file)
        if not kb_guess or not is_kb_installed(kb_guess[0]):
            print("Installing {}".format(kb_file))
            run('dism.exe /Online /Quiet /NoRestart /Add-Package /PackagePath:"{}"'.format(kb_source), accept_returncodes=[0, 3010, 2359302, -2145124329], timeout=1800)
        else:
            print("{} already installed".format(kb_file))

    if is_pending_reboot():
        print("A reboot is needed !")

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


def update_package():
    # Initializing variables
    url_dl = [
    "http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4807b0b1-6c5a-4a70-ab45-b378235fb9d6/public/windows11.0-kb5053598-x64_6cb3ffc5c4d652793dc71705248426eecdacdfd0.msu",
    "http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8b7f92b-bd35-4b4c-96e5-46ce984b31e0/public/windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu"
    ]

    proxies = get_proxies()

    for url in url_dl:
        latest_bin = url.rsplit('/',1)[-1]
        kb_file = makepath(basedir,"KB",latest_bin)

        # Downloading latest binaries
        if not isfile(latest_bin):
            print("Downloading: %s" % latest_bin)
            wget(url, kb_file, proxies=proxies)

    # Changing version of the package
    control.version = "%s-%s" % (control.get_software_version(), int(control.version.split("-")[-1]) + 1)
    control.save_control_to_wapt()
    print("Changing version to: %s in WAPT\\control" % control.version)

819632610a101af11c72907fb13ff05b5fb4222c0e263ee9a03bcc1d1d5f26a4 : KB/windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu
34e87ec97f2b5ab9d603eaaecf360f2ace1bf48a9d0a7c4ba2a59b49f071d5e6 : KB/windows11.0-kb5053598-x64_6cb3ffc5c4d652793dc71705248426eecdacdfd0.msu
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ef305e53cb2cd45705c1d269461c463a37cb01add793c2e3ffe220f503942aa2 : WAPT/control
50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60 : WAPT/icon.png
0e7c60c32a39fe4a87e6b974553cf94dc797a5eec821381263c3221224c8e64f : luti.json
c9bb204c22d21df827c96c4040267dbc55d590820e6b70846fdbcc7df45d7697 : setup.py
48d01acae31d5fe89f842da7cfe7cb87912020373ba644e9a86152e1edc69da8 : update_package.py