Welcome to deBUG.to Community where you can ask questions and receive answers from Microsoft MVPs and other experts in our community.
0 like 0 dislike
14 views
in PowerShell by 12 13 22
I want to see a complete list of software installed on my local Windows machine. Is there a way to retrieve this information using PowerShell?

1 Answer

0 like 0 dislike
by 164 208 428

List All Installed Software on My Local Machine Using PowerShell?

You can use the Get-WmiObject cmdlet to list all installed software on your local machine.

Get-WmiObject -Class Win32_Product | Select-Object Name, Version

Output

Get Security Updates Installed in Last Month in PowerShell

If you don’t ask, the answer is always NO!
...