New
#1
Getting a filtered list of installed software in powershell
Hello Win10 community,
I wonder how it is possible to get a filtered list of the installed software on the computer using Windows PowerShell?
For example I use the following command to list a names of installed programs:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName
Now I want to filter this output and to show only results that contains certain part of the name for example Python or Office
What would be a correct command to do so?
Thank you