Display a list of installed hotfixes on a remote computer

Get-Hotfix is one of the Windows PowerShell cmdlets that can act on a remote computer by using the -ComputerName parameter. You can use the Get-Hotfix cmdlet to quickly display a list of installed hotfixes on a remote computer. For example, if the name of the remote computer is SEA-SRV-01 then you could type the following command from the Windows PowerShell command shell:

Get-Hotfix -computername SEA-SRV-01 | Select HotfixID, Description, InstalledOn | Sort-Object InstalledOn

The results might look like this:

HotfixID           Description            InstalledOn

KB975467      Hotfix                       11/7/2010 3:00:00 AM

KB978251      Security Update     11/7/2010 3:00:00 AM

etc.

You can also abbreviate the above command like this:

Get-Hotfix –cn SEA-SRV-01 | Select HotfixID, Description, InstalledOn | sort InstalledOn

If you have feedback concerning this tip, please email me. And be sure to check out my website!

About The Author

1 thought on “Display a list of installed hotfixes on a remote computer”

  1. Hi Mitch,

    This is very good tip you have shared, How can I get the report for Multiple computers in CSV format.

    Regards
    Zaheed Baig

Leave a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Scroll to Top