19 lines
230 B
Markdown
19 lines
230 B
Markdown
# Windows Updates
|
|
|
|
|
|
---
|
|
## PowerShell
|
|
### Install Windows Update
|
|
```powershell
|
|
Install-Module -Name PSWindowsUpdate
|
|
```
|
|
### List all Commands
|
|
```powershell
|
|
Get-Command -module PSWindowsUpdate
|
|
```
|
|
|
|
```powershell
|
|
Get-WUInstall
|
|
```
|
|
|