windows/*: add more PowerShell commands (#11612)

* windows/*: add more PowerShell commands

* get-commandL fix typo

* Update install-module.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Reinhart Previano Koentjoro
2023-11-30 14:09:50 +07:00
committed by GitHub
parent 218768cb40
commit e44fd29d4c
7 changed files with 141 additions and 12 deletions

View File

@@ -0,0 +1,25 @@
# Get-WUHistory
> Get the history of installed updates from Windows Update. Part of external `PSWindowsUpdate` module.
> This command can only be run under PowerShell.
> More information: <https://github.com/mgajda83/PSWindowsUpdate>.
- Get list of update history:
`Get-WUHistory`
- List the last 10 installed updates:
`Get-WUHistory -Last {{10}}`
- List all updates installed from a specific date to today:
`Get-WUHistory -MaxDate {{date}}`
- List all updates installed in the past 24 hours:
`Get-WUHistory -MaxDate (Get-Date).AddDays(-1)`
- Send the results via email (SMTP):
`Get-WUHistory -SendReport -PSWUSettings @{SmtpServer="{{smtp_server}}"; Port={{smtp_port}} From="{{sender_email}}" To="{{receiver_email}}"}`