tis-kb5050009 icon

Cumulative update January for W11 24H2

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

1-1

  • package: tis-kb5050009
  • name: Cumulative update January for W11 24H2
  • version: 1-1
  • 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: 528.09 Mo

package           : tis-kb5050009
version           : 1-1
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      : 536da4cb-527b-41a7-affa-bf42819ca622
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-20T11:12:00.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         : O/Tojgj6a915mVn8L46GWLG0V4v0++NgT1iHXt/ePYWcSdmhUHiDMOeeUE0YNP5bGHMdDw4HPmddQbW2XzGQa3bZCYKNdQKQMEhpU0yxHN1ikXgpqA1Pl0b1x47N4tU4kRQverKcLfVzWE1JNj9W6DpnodGptj4pj5IArqMtkmOjjdrn/zc9A0relemIBM5+iwWwarUguXkXu+LW6pHOoJQp5Y/EgTQMAe4FargfuHyowprwuESQC2EsS0rQ0E+x/+t7/1Jxz0Fn2ZPPBAh7zwPElRxnELpmMKZwkA92G3/IlymF05gVehl89nJZvMot0kpkx9ot+DdzMaTOhQ8TbQ==

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


def install():
    with EnsureWUAUServRunning():
        kb_files = [
            '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('wusa.exe "{}" /quiet /norestart'.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"
    
    proxies = get_proxies()
    latest_bin = url_dl.split('/')[1]
    version = control.get_software_version()

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

    # Changing version of the package
    control.version = "%s-%s" % (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
0885f073de4e2cfac0d53ffacb927c655876e10291901c23149c22dafa4ab936 : WAPT/control
50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60 : WAPT/icon.png
6d79ad76cd4b3b91121677a795c16e25e012c61353d349a25501c06581cc80e0 : luti.json
727775044a0cbb70923f1b5a8c7e2e9920f1d559d57d5d06cd89b723d07f475b : setup.py
17525359bec1beec787faa39d5c04605b5d8a588c38794ec4c97603200acc0c4 : update_package.py
ee108e6697b6059d12133e3efbd9d4f3d85530a09ec60e8196b582bf3d188131 : windows11.0-kb5050009-x64_97aac2ab4f607b11d50ad2fd88a5841ee0b18dd5.msu