
Cumulative update June for W11 22H2/23H2
Paquet d’installation silencieuse pour Cumulative update June for W11 22H2/23H2
1-2
- package: tis-kb5060999
- name: Cumulative update June for W11 22H2/23H2
- 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: 932.68 Mo
package : tis-kb5060999
version : 1-2
architecture : x64
section : base
priority : optional
name : Cumulative update June for W11 22H2/23H2
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 : 14553763-3ec1-417d-be67-f034fb51c55c
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0.22621
max_os_version : 10.0.22631
icon_sha256sum : 50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-16T16:23:55.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 : tJJyUCTrGraKoPKcesxr22i8EaxxYSSbokYB0bHb4Lt1ogJSVMJFQCPM8hEwqs8QckFLo/MBqfZkc1Likg9RwBfecCpcncWdNm2pZjbzjffYfDIs9ysmlupgcsgppkTB84Z4H+5j3AyOZxF14Vz1fWMkMHuvuKtFdZHOEPESy34fty7Lp9I0LjNEic21bCkDKHQXk5luQEhIpfGRt63MhLYT8NfYvav3dE63mfx9mX+qzP0U/tjKbRXMRKVo2dE6DNSou34W2yBmfvxfHNHL9CcM3pv7SXj9g2O4I5HShFDr98MvR0sBXdjtbDQTpef505jETLQFTX1BB8792Cfu2g==
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-kb5060999-x64_99e39c1cf8a8976d9b3313efb38069876c417f70.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 = "https://catalog.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/2aad751f-e4c4-4448-8f71-24ee08558a9a/public/windows11.0-kb5060999-x64_99e39c1cf8a8976d9b3313efb38069876c417f70.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
9202a46894d1a9ce3de7245504914a6de90f509910bbb0f212667524cfb22447 : WAPT/control
50ebc8b391d1e8930ff6b89e962c0af3c804cab454c62d13514438f4dd703e60 : WAPT/icon.png
d4f39a2c5c7fed41f427a97eaf099ca9ded38cd11112b9fb51f994e60103d03e : luti.json
b2c22182d97bbbf9ddce7273fa5d9a475a3384efc1a224f442e5e10a8ba03f1b : setup.py
6012f5eacb7e9dce85c8977f25d7d9f866ab94e0d38381d2a3a7cd42a7c07f80 : update_package.py
2008ca9b7c7b9e0a66f1cbba99f5d039b46f8a8f7383f164fb4eba40668a83b4 : windows11.0-kb5060999-x64_99e39c1cf8a8976d9b3313efb38069876c417f70.msu