https://github.com/nkasco/PSWindowsUpdateHistory
A quick way to obtain Windows Update history without external dependencies
https://github.com/nkasco/PSWindowsUpdateHistory
Last synced: 5 months ago
JSON representation
A quick way to obtain Windows Update history without external dependencies
- Host: GitHub
- URL: https://github.com/nkasco/PSWindowsUpdateHistory
- Owner: nkasco
- License: mit
- Created: 2023-06-06T23:12:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-06T23:25:24.000Z (almost 2 years ago)
- Last Synced: 2024-08-13T07:05:07.397Z (8 months ago)
- Language: PowerShell
- Size: 5.86 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - nkasco/PSWindowsUpdateHistory - A quick way to obtain Windows Update history without external dependencies (PowerShell)
README
# PSWindowsUpdateHistory
A quick way to obtain Windows Update history without external dependencies.This includes more information beyond Get-Hotfix such as Defender definitions, driver installations, etc.
## Examples:
```
.\'Windows Update History Viewer.ps1'Title : Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.391.667.0)
Description : Install this update to revise the files that are used to detect viruses, spyware, and other potentially unwanted software.
Once you have installed this item, it cannot be removed.
InstallDate : 6/6/2023 6:54:23 PM
Operation : Installation
SupportURL : https://go.microsoft.com/fwlink/?LinkId=52661
UninstallationNotes :
Categories : Microsoft Defender Antivirus
ClientApplicationID : Windows Defender
ResultCode : Succeeded
``````
$Today = Get-Date
.\'Windows Update History Viewer.ps1' -StartDate $Today
``````
#Full or partial title can be used
.\'Windows Update History Viewer.ps1' -Title "2023-03"
``````
$Today = Get-Date
.\'Windows Update History Viewer.ps1' -StartDate $Today -Title "2023-03"
``````
.\'Windows Update History Viewer.ps1' -Limit 1
```