Mise à jour de 'README.md'
This commit is contained in:
23
README.md
23
README.md
@@ -15,7 +15,24 @@ Le référentiel Microsoft nécessite TLS 1.2 ou TLS 1.3 à partir des machines
|
|||||||
```powershell
|
```powershell
|
||||||
[Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12
|
[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
|
||||||
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user