Skip to content

Instantly share code, notes, and snippets.

@g-berthiaume
Created December 28, 2018 23:59
Show Gist options
  • Save g-berthiaume/24db647112fb736eb44397d8944d855e to your computer and use it in GitHub Desktop.
Save g-berthiaume/24db647112fb736eb44397d8944d855e to your computer and use it in GitHub Desktop.
List all installed programs in a windows computer
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: ListPrograms.bat
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Will list all installed programs.
::
:: G. Berthiaume
:: 2018
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@echo off
echo List all programs installed on %date%, %time%
wmic Path Win32_Product get name,version | sort | findstr /R "."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment