tis-kb5063060 icon

Cumulative update June (OOB) for W11 24H2

Silent install package for Cumulative update June (OOB) for W11 24H2

1-2

  • package: tis-kb5063060
  • name: Cumulative update June (OOB) 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: 3.15 Go

package           : tis-kb5063060
version           : 1-2
architecture      : x64
section           : base
priority          : optional
name              : Cumulative update June (OOB) 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      : db1edce7-6fd6-4c99-99cd-2b3c0b479d0c
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-06-26T09:04:46.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         : hJKwWoa81zIIjlJTUcy6JRqopLFP4YM64YTtuoPKZWB3H0KsAF6teJK5CRzk3fyRC5tm9YzdntF0POoeAkPvjpex4Dj5Wl0x6zfGwVAKKTsAtzUGkilkiCsXcWHSdIPXOuhYtpCbH99krUdbUSu69lSL1rx2zAemi9lqErJt2LUcxkMUSnRSNj9tSN7bbw5ms3GfSqfPTieAXPXmZEB9NtlmJhb9+p13iVTspvy1YaZviae16rYY+vNbSOQ93/MVuLx0M/t19FnOmYqYbKjSV2QZB7RXkBuMkPAkuLvBAS9N29onr0FFD6JKYRyxus3Mqi/Z54ity+Xp1EWn8AVLLQ==

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-kb5063060-x64_96be31e3e3e1cbc216229abb83e5be9da4e08496.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 = [
    "https://catalog.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/c64e871c-d486-4b61-9389-acb17989ced2/public/windows11.0-kb5063060-x64_96be31e3e3e1cbc216229abb83e5be9da4e08496.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
8e3a6ffd135bbeb29198d3aa060b84e032e831993255d180d2d677fa616f6061 : WAPT/control
50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60 : WAPT/icon.png
3d7ff3aa750d10869bc9496e2fb9f4b52050522183d54af8fe05968fc66dc521 : luti.json
ec67b97fa0a9dc80d7ad84f24f3d2be83f0ce4cd635c31472b6bbf91525b7b19 : setup.py
a921890b118e960b428373edeb28dbed8f01c7a276f85862788befb5bbba73c6 : update_package.py
819632610a101af11c72907fb13ff05b5fb4222c0e263ee9a03bcc1d1d5f26a4 : windows11.0-kb5043080-x64_953449672073f8fb99badb4cc6d5d7849b9c83e8.msu
a5f28670b5320908144a878993af031cf41d601ea6901eb210fa1b6097c0bb4a : windows11.0-kb5063060-x64_96be31e3e3e1cbc216229abb83e5be9da4e08496.msu