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 +```