Skip to content

Instantly share code, notes, and snippets.

@g-berthiaume
Last active January 1, 2019 03:24
Show Gist options
  • Save g-berthiaume/ba6ed9c3c5f4138e625366fe1251b858 to your computer and use it in GitHub Desktop.
Save g-berthiaume/ba6ed9c3c5f4138e625366fe1251b858 to your computer and use it in GitHub Desktop.
Will list all installed programs in Windows 10 using the terminal.
# -------------------------------------------------------------------------------
# list_programs.ps1
# Will list all installed programs in Windows 10 using the terminal.
# From https://www.itechtics.com/list-installed-programs-windows-10/
#
# G. Berthiaume
# 2018
# -------------------------------------------------------------------------------
Write-Output "Date: $(Get-Date -Format u)"
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* `
| Select-Object DisplayName, DisplayVersion, Publisher, InstallDate `
| Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment