From b8126565639c1b93504866ca4fdfa909f33274ef Mon Sep 17 00:00:00 2001 From: Sam Nang SOK Date: Thu, 29 Sep 2022 15:55:12 +0000 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'README.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d472e20..6c56128 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,24 @@ Le référentiel Microsoft nécessite TLS 1.2 ou TLS 1.3 à partir des machines ```powershell [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12 ``` - - - +Pour lister mises à jour disponibles : +```powershell +Get-WindowsUpdate +``` +Installer toutes les mises à jour en attente sur la machine : +```powershell +Install-WindowsUpdate -AcceptAll -AutoReboot +``` +Vérifier un redémarrage en attente : +```powershell +Get-WURebootStatus +``` +Afficher l'historique des MAJ : +```powershell +Get-WUHistory +``` +Désinstaller une MAJ : +```powershell +Remove-WindowsUpdate -KBArticleID KBXXXX +```