tis-kb5050009 icon

Cumulative update January for W11 24H2

Paquet d’installation silencieuse pour Cumulative update January for W11 24H2

1-2

  • package: tis-kb5050009
  • name: Cumulative update January 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.06 Go

package           : tis-kb5050009
version           : 1-2
architecture      : x64
section           : base
priority          : optional
name              : Cumulative update January 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      : fb4425d5-4448-4f57-baea-92aaf2294821
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-01-30T08:04:45.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         : Ez9JTHM0C9YzWT3fBKo64an4RnePj1GW6bWqe32pmiFHTr/+xqAaVtNdznx+zg70x+2Rk9KOfgYNAbNIo+IMSY+Or6J+UoffnnXs1mY/ZzTwmOnVUwzn/q5zhLMeC/sVRsvN0l9TDhGhCm/OAVmOOnMio3/oIrYKUVGnAWP9KA47aQ38yOLicLKSiRmZBC7vfuhG3tcK/SH/9nll9MpvukowZXj7VfV0e+EJbQqAGV5RgM2R7sQpOPw7s6nv6WGFvMQt2cQBDYYALXtjC0vIFdpO8Hs3M6mFVPWmop4p0Ko5yVvHBjOBriWA28+r56CHJlJ1bEVTAM7Uq+fl3sfd/g==

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_files = [
            'windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu',
            'windows11.0-kb5050009-x64_97aac2ab4f607b11d50ad2fd88a5841ee0b18dd5.msu'
            ]

        for kb_file in kb_files:
            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_file), 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/66557ecc-650e-4c70-8baf-c624c4de912f/public/windows11.0-kb5050009-x64_97aac2ab4f607b11d50ad2fd88a5841ee0b18dd5.msu",
    "https://catalog.sf.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]

        # Downloading latest binaries
        if not isfile(latest_bin):
            print("Downloading: %s" % latest_bin)
            wget(url, latest_bin, 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)

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9a82292852ed47ec6bcc2364951ad2f09f4b246c2046b185be4de4d69cd64cf5 : WAPT/control
50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60 : WAPT/icon.png
2241144c8d540cca9f92d06701e65b77a98e28f5e1da8b619dc67331aa4bcc3b : luti.json
c12eb66f48bc10a918f876c3f02c98eec96602c8d10b06d48e95f412b27e1afd : setup.py
d082374a80250f52d93a7f512d495a509e94795210ca22aab3ccfee1774ec33b : update_package.py
819632610a101af11c72907fb13ff05b5fb4222c0e263ee9a03bcc1d1d5f26a4 : windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu
ee108e6697b6059d12133e3efbd9d4f3d85530a09ec60e8196b582bf3d188131 : windows11.0-kb5050009-x64_97aac2ab4f607b11d50ad2fd88a5841ee0b18dd5.msu