PowerTip: Quickly Find System Updates via PowerShell

PowerTip: Quickly Find System Updates via PowerShell

Rate This
  • Comments 4

Summary: Use Windows PowerShell to identify updates applied to a computer system.

Hey, Scripting Guy! Question How can I find which updates are applied to my computer?

Hey, Scripting Guy! Answer 

Use the Get-Hotfix cmdlet. To find updates, use the Description parameter and specify Update:

Get-HotFix -Description Update

To find a specific hotfix by ID number, use the Id parameter:

Get-HotFix -id kb2741530 

Leave a Comment
  • Please add 7 and 4 and type the answer here:
  • Post
  • So this one let's you know where you're outdated? Does it also include Applications or is it just like Windiws Updater?

  • *Windows

  • It is a wrapper around this:

    gwmi win32_quickfixengineering

    I is only for hotfixes for WIndows and Microsoft applications like Office that are serviced by WIndows Update or are installed via a KB.

    To see this run the following:

    Get-Hotfix|?{$_.description}|select description

  • Any way to "install" updates, not just see what was installed?

Page 1 of 1 (4 items)