Want to get the list of all softwares installed on your computer?!
Well, there is a command for that! And it just a single line WMI query.
Get-WmiObject -Class Win32_Product | Select-Object -Property Name
Okay, if you want to explore all contents slowly by reading them from a text file, that could be done easily! You know “>” symbol will print all contents to the location on the right side.
Just use :
Get-WmiObject -Class Win32_Product | Select-Object -Property Name > C:\Software\MyPCApps.txt
And “MyPCApps.txt” will have all your installed programs!